Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Grids
Message
From
03/03/2001 08:33:15
 
 
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Title:
Re: Grids
Miscellaneous
Thread ID:
00481607
Message ID:
00481653
Views:
14
Hi Milt.

>> In my generic grid I have the following code in the fresh of the grid that refresh each column:
LOCAL lnKount, lnPages
lnColumn = This.ColumnCount
For lnKount = 1 TO lnColumn
lcobject = "This.Column" + Alltrim(Str(lnKount))
&lcobject..refresh()
Endfor <<
FOR EACH loColumn IN This.Columns
   loColumn.Refresh()
ENDFOR
But I am curious. Why are you taking this approach instead of just issuing a This.Refresh()? What is it that you are trying to accomplish here?

Marcia
Previous
Reply
Map
View

Click here to load this message in the networking platform