VBGamer |
|||||||||||||||||||||||||||||||||||||||||||||||||||||
RE: Objects Rag on a Stick (2 replies, 0 views) (2000-Aug-7) ![]() Well, the file list box is actually a Control, the easiest way to fix this is by drawing one on the form and setting it to invisible. Alternatively I *think* you can do one using code something like this:
Dim File_List as New FileListBox
Set File_List = SomeoneSmartFillThisIn
But as you can see I'm very unsure of exactly how to create controls in that manner.
If you need lots of different FileListBoxs then you can make a control array and then type:
Load File_List(1)
Load File_List(2)
and it will create 2 more boxes based on the properties of the first ( File_List(0) )
hth ![]()
|