Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
List box & go top
Message
 
To
21/03/2000 11:23:57
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00348398
Message ID:
00348464
Views:
22
>Hi Anthony,
>
>I went with this:
>
>FOR cntr1 = 1 TO THISFORM.lststatus.LISTCOUNT
> THISFORM.lststatus.SELECTED(cntr1) = .F.
>ENDFOR
>THISFORM.lststatus.SELECTED(1) = .T.
>THISFORM.lststatus.SELECTED(1) = .F.
>THISFORM.REFRESH
>
>It's not elegent, but it works.
>
>Thanks

Mike,

How about;
FOR cntr1 = THISFORM.lststatus.LISTCOUNT TO 1 STEP -1
	THISFORM.lststatus.SELECTED(cntr1) = .F.
ENDFOR
THISFORM.REFRESH
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform