How to use listbox double click in order to put the value into 10 different labels in form?
i been trying so hard
Private Sub ListBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
IssueDOCumSalesInvoiceForm.ItemCode1.Caption = Me.ListBox1.Text
IssueDOCumSalesInvoiceForm.ItemCode2.Caption
IssueDOCumSalesInvoiceForm.ItemCode3.Caption..to 10 etc
i should transfer the data to sheet first by using
IRow = Sheet6.Range("a" & Rows.Count).End(xlUp).Row + 1 ?
then from there put cell value to label?
or any alternative way to solve?
i been trying so hard
Private Sub ListBox1_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
IssueDOCumSalesInvoiceForm.ItemCode1.Caption = Me.ListBox1.Text
IssueDOCumSalesInvoiceForm.ItemCode2.Caption
IssueDOCumSalesInvoiceForm.ItemCode3.Caption..to 10 etc
i should transfer the data to sheet first by using
IRow = Sheet6.Range("a" & Rows.Count).End(xlUp).Row + 1 ?
then from there put cell value to label?
or any alternative way to solve?