here is my code:
With RECEIPT
For i = 0 To MENUORDER.lvorder.Items.Count - 1
.LstOrder.Items.Add(MENUORDER.lvorder.Items(i)) 'dont know what to do next
Next i
.ReceiptNo.Text = Me.lblos.Text
.lblTotal.Text = Me.lbltotal.Text
.lblCash.Text = Me.TextBox1.Text
.lblChange.Text = Me.lblchange.Text
.ShowDialog()
End With
[forms : RECEIPT, MENUORDER]
i dont know how to display listview subitems in the lisbox
i want to make a receipt thats why i want to transfer them..