|
-
March 21st, 2001, 11:31 AM
#1
MSHFLEXGRID
Hi,
I've got a file viewer that uses the mshflexgrid to display data, I would like to use the outside border of the grid as a record counter. Right now I have the first column acting as the record counter, but then when you scroll to the right you lose sight of the first column, so I want to use the outside fixed column. Anyone know how to do that??
Thanks,
Sean
-
March 21st, 2001, 01:12 PM
#2
Re: MSHFLEXGRID
You can put record counter to the ToolTip
MSFlexGrid1.ToolTipText = MSFlexGrid.Rows-1
Iouri Boutchkine
[email protected]
-
March 21st, 2001, 01:15 PM
#3
Re: MSHFLEXGRID
set the fixed columns property to 1.
suchas
someflexgrid.fixedcols = 1
However, there must be at least one column on the grid. If you are filling the grid dynamically,
'this resets the grid
someflexgrid.fixedcols = 0
someflexgrid.cols=0
someflexgrid.cols = 1
someflexgrid.fixedcols = 1
. . .
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|