The text should be stored in an array and the program should be able to cycle through text stored in a number of array location
SOURCE: how to store in an array the records in a listview
create form1 with one list box and form2 with text boxes and command button.
Go to project >project properties>start object will be form2..
Here i takenexamble of two textboxes..code is below
Private Sub Command1_Click()
Form1.List1.AddItem Text1.Text, 0
Form1.List1.AddItem Text2.Text, 1
Form1.Show
End Sub
hope this will help you...Thank you,....
90 views
Usually answered in minutes!
×