Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Hide cursor in grids textbox
Message
De
15/08/2001 09:25:56
 
 
À
15/08/2001 09:00:27
Cetin Basoz
Engineerica Inc.
Izmir, Turquie
Information générale
Forum:
Visual FoxPro
Catégorie:
Gestionnaire d'écran & Écrans
Divers
Thread ID:
00543966
Message ID:
00544020
Vues:
16
Hello Cetin

didn't function at first

cause in the init of grid was:

with this
.recordsource = ""
.columncount = -1
.columncount=fcount(lcAliasName)-3
.recordsource = lcAliasName
for ix=1 to .columncount
with .columns(ix)
.controlsource = lcAliasName+"."+field(ix)
....
endwith

so i added a property "nrofwantedfields" to gridclass and changed code to:
with this
.recordsource = ""
.columncount = -1
IF .nrofwantedfields = 0
.columncount=fcount(lcAliasName)-3
ELSE
.columncount= .nrofwantedfields
ENDIF
.recordsource = lcAliasName
for ix=1 to .columncount
with .columns(ix)
.controlsource = lcAliasName+"."+field(ix)
...
endwith


works just fine ..

thx for the help


Christian
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform