Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Listbox (or grid)
Message
De
23/05/2001 16:43:16
Cetin Basoz
Engineerica Inc.
Izmir, Turquie
 
 
À
23/05/2001 16:24:11
Chuck Tripi
University of Wisconsin - Milwaukee
Milwaukee, Wisconsin, États-Unis
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00510593
Message ID:
00510602
Vues:
12
>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
Précédent
Répondre
Fil
Voir

Click here to load this message in the networking platform