December 17th, 1999, 02:26 PM
How can I fill a combox with a list of files (say text files)from a directory.
Thanks in advance.
Thanks in advance.
|
Click to See Complete Forum and Search --> : Filling Combox with a list of files. December 17th, 1999, 02:26 PM How can I fill a combox with a list of files (say text files)from a directory. Thanks in advance. Aaron Young December 17th, 1999, 02:45 PM private Sub Command1_Click() Dim sDir as string sDir = Dir("C:\Windows\*") While len(sDir) Combo1.AddItem sDir sDir = Dir Wend If Combo1.ListCount then Combo1.ListIndex = 0 End Sub Aaron Young Analyst Programmer adyoung@win.bright.net aarony@redwingsoftware.com codeguru.com
Copyright Internet.com Inc., All Rights Reserved. |