Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
List Index in a List Box
Message
From
01/10/2004 14:18:55
 
 
To
01/10/2004 14:06:17
Mike Smith
Doncaster Office Services
Oakville, Ontario, Canada
General information
Forum:
Visual FoxPro
Category:
Other
Miscellaneous
Thread ID:
00948036
Message ID:
00948039
Views:
29
>I am working with a filtered data file and I want to have a list open at a specific record but I can't figure out how to set the list index value to do this.
>
>Suppose I want to start at recno() = r1. What is the value of the list index for the list at that point? My init reads as below and this doesn't work:
>
>SELECT TRANS1
>SET ORDER TO FULLNAME
>SET FILTER TO EXTRA1 > " a"
>LOCATE FOR RECNO()= R1
>NINDEX = THISFORM.LIST1.LISTINDEX
>THISFORM.LIST1.LISTINDEX = NINDEX
>THISFORM.LIST1.SETFOCUS()
>
>Mike Smith

try this
SELECT TRANS1
SET ORDER TO FULLNAME
SET FILTER TO EXTRA1 > " a"
THISFORM.LIST1.requery
COUNT ALL WHILE RECNO()# R1
THISFORM.LIST1.LISTINDEX = IIF(RECNO()=R1,_TALLY+1,_TALLY)
THISFORM.LIST1.SETFOCUS
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform