Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Select statement HELP for combo
Message
 
To
14/08/1999 01:03:15
Peter Brama
West Pointe Enterprises
Detroit, Michigan, United States
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00253732
Message ID:
00253742
Views:
15
Peter,

Create a parameterized view in teh database wiht the fllowing set up.
SELECT partnername, partnerid FROM partner ;
 WHERE firmid=lcfirmid into cursor cur1 order by 1
Then in the requery method of the partner combo put this code;
* Assumes the firmID is column 2 of the firm combo
LOCAL lcFirmID
lcFirmId = Thisform.cboFirm.List(Thisform.cboFirm.ListItem,2)
Requery("TheNameOfTheView")
From the interactivechange event of the firm combo call teh partnercobmo's requery method.
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform