List support by VBA

List support by VBA

Anonymous
Not applicable
232 Views
1 Reply
Message 1 of 2

List support by VBA

Anonymous
Not applicable
I have a nubers of drawings list in notepad, this list I want to create in VB Application by input statement.

Can I import by input statement (read-line) and convert to list object so I can send this list to list box.
0 Likes
233 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable
Something like: fn=freefile Open "notepadfile.text" for input as #fn Do while not eof(fn) line input #fn, npline list1.additem npline Loop Close #fn -- Saludos, Ing. Jorge Jimenez, SICAD S.A., Costa Rica (sorry, phony e-mail, SPAM made me do it) "Avinash" wrote in message news:18684181.1077949035848.JavaMail.jive@jiveforum2.autodesk.com... > I have a nubers of drawings list in notepad, this list I want to create in VB Application by input statement. > > Can I import by input statement (read-line) and convert to list object so I can send this list to list box.
0 Likes