Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
Replacing Column Controls in Grid at Runtime
Message
De
30/06/1999 14:14:23
Rex Mahel
Realm Software, Llc
Ohio, États-Unis
 
 
À
Tous
Information générale
Forum:
Visual FoxPro
Catégorie:
Autre
Titre:
Replacing Column Controls in Grid at Runtime
Divers
Thread ID:
00236050
Message ID:
00236050
Vues:
45
All,

I am replacing column controls at runtime with custom classes in a grid. After the substitution, the controls no longer contain any information. What am I doing wrong? The code is as follows:

LOCAL ;
loColumn,;
lcCurrentControlName,;
lcAddingControlName

FOR EACH loColumn IN This.Columns
IF EMPTY(This.aControlType[loColumn.ColumnOrder])
LOOP
ENDIF
lcAddingControlName = This.aControlType[loColumn.ColumnOrder]
lcCurrentControlName = loColumn.CurrentControl
WAIT WINDOW "Now exchanging " + lcAddingControlName + " for " + lcCurrentControlName NOWAIT
loColumn.RemoveObject(lcCurrentControlName)
loColumn.AddObject(lcCurrentControlName,lcAddingControlName)
loColumn.CurrentControl = lcCurrentControlName
ENDFOR
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform