Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Replacing Column Controls in Grid at Runtime
Message
From
30/06/1999 14:14:23
Rex Mahel
Realm Software, Llc
Ohio, United States
 
 
To
All
General information
Forum:
Visual FoxPro
Category:
Other
Title:
Replacing Column Controls in Grid at Runtime
Miscellaneous
Thread ID:
00236050
Message ID:
00236050
Views:
44
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
Next
Reply
Map
View

Click here to load this message in the networking platform