Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Listbox (or grid)
Message
From
23/05/2001 16:43:16
Cetin Basoz
Engineerica Inc.
Izmir, Turkey
 
 
To
23/05/2001 16:24:11
Chuck Tripi
University of Wisconsin - Milwaukee
Milwaukee, Wisconsin, United States
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00510593
Message ID:
00510602
Views:
11
>SELECT auth.id,auth.organization FROM auth where auth.authtype = authtype.authtype INTO CURSOR temp
>
>This is what I have as of now in a listbox. I need help with how to link the auth.id to person.id to display person.name.
>
>Chuck

Chuck,
*listbox.init
lcSQL = 'select person.Name, auth.Organization, auth.id'+ ;
 ' from auth join person on auth.id = person.id'+ ;
 ' where auth.authtype = authtype.authtype'+;
 ' into cursor temp'
with this
 .Columncount = 3
 .BoundColumn = 3
 .Bound = .t.
 .Columnwidths ='100,100,100'
 .RowsourceType = 3
 .RowSource = lcSQL
endwith
Cetin
Çetin Basöz

The way to Go
Flutter - For mobile, web and desktop.
World's most advanced open source relational database.
.Net for foxheads - Blog (main)
FoxSharp - Blog (mirror)
Welcome to FoxyClasses

LinqPad - C#,VB,F#,SQL,eSQL ... scratchpad
Previous
Reply
Map
View

Click here to load this message in the networking platform