Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Iterating through columns in a grid
Message
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00524428
Message ID:
00524431
Views:
15
This message has been marked as the solution to the initial question of the thread.
You need to specify an array or a collections, in your case it is Columns as below:
LPARAMETERS tnColNumber

FOR EACH oColumn IN Thisform.grdQueue.Columns
  IF oColumn.ColumnOrder = tnColNumber
    oColumn.Header1.FontBold = .T.
  ENDIF
ENDFOR
>This is my first attempt to work with grids so please bear with me.
>
>I want to create a little method which will (for example) boldface the header on a particular column
>
>
>LPARAMETERS tnColNumber
>
>FOR EACH oColumn IN Thisform.grdQueue
>  IF oColumn.ColumnOrder = tnColNumber
>    oColumn.Header1.FontBold = .T.
>  ENDIF
>ENDFOR
>
>
>This generates an error "GRDQUEUE cannot be enumerated"
>
>Could someone post a sample of the proper way to cycle through the columns of a grid???
>
>Thanks to all........Rich

Doug Stalter

"According to the proverb, the best things are the most difficult." -Plutarch
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform