Author | Message | Time |
---|---|---|
OuTLawZGoSu | 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. | March 14, 2004, 3:36 PM |
UserLoser. | [code] Dim I as Long For I = 1 to List1.ListCount Shell List1.List(I) Next I [/code] | March 14, 2004, 6:18 PM |
o.OV | [quote author=UserLoser. link=board=31;threadid=5770;start=0#msg49363 date=1079288313] [code] Dim I as Long For I = 1 to List1.ListCount Shell List1.List(I) Next I [/code] [/quote] Shouldn't it be.. [code] For I = 0 to List1.ListCount - 1 [/code] ? | March 15, 2004, 4:56 AM |
iago | Probably, I very much doubt he took the time to actually open vb and test it out. | March 15, 2004, 6:05 PM |