M
Murat Kelleci
Form:
addlist(me)
Module:
Sub addlist(ByVal myform As Form)
Dim myList As New ListBox()
myList = myform.Controls.Item(1)
mylist.items.add("test")
End Sub
I have many listboxes and text boxes and i can find their control index
number to use like myform.control.item(i).
Can u help me?
addlist(me)
Module:
Sub addlist(ByVal myform As Form)
Dim myList As New ListBox()
myList = myform.Controls.Item(1)
mylist.items.add("test")
End Sub
I have many listboxes and text boxes and i can find their control index
number to use like myform.control.item(i).
Can u help me?