Hi All,
I was just wondering if there is anyway to insert a command button into a flex grid cell. Any help would be apprecieated, email any responses to [email protected]
Thanks
Mike
Printable View
Hi All,
I was just wondering if there is anyway to insert a command button into a flex grid cell. Any help would be apprecieated, email any responses to [email protected]
Thanks
Mike
Is it possible to turn of arrow scrolling of the grid. I would like to try and trap the up and down arrow keys so I can change a value when they are pressed.
Thanks again,
MIke
You can use the following code to put a command button on top of the flexgrid so that it appears to take the place of one of the cells. This is as close as I can get to what it sounded like you were looking for.
[code]MSFlexGrid1.Col=1
MSFlexGrid1.Row=1
Command1.Height = MSFlexGrid1.CellHeight
Command1.Width = MSFlexGrid1.CellWidth
Command1.Top = MSFlexGrid1.Top + MSFlexGrid1.CellTop
Command1.Left = MSFlexGrid1.Left + MSFlexGrid1.CellLeft
Form1.Refresh[code]