How do you do this.
I got a list1 and a Command Button.
When i click Cmd1 , It will shell all the program addreses in List1.
I tryed but I cant get this.
If you need more info just ask.
Dim I as Long
For I = 1 to List1.ListCount
Shell List1.List(I)
Next I
Quote from: UserLoser. on March 14, 2004, 12:18 PM
Dim I as Long
For I = 1 to List1.ListCount
Shell List1.List(I)
Next I
Shouldn't it be..
For I = 0 to List1.ListCount - 1
?
Probably, I very much doubt he took the time to actually open vb and test it out.