-
I've seen it done before, people whom have added controls like text boxes and combo lists in the MSFlexGrid.
Well has anyone seen a Command Button in the MSFlexGrid? I'm looking for some code or anything......
Command Buttons in a FlexGrid...... is it possible?
-
It is Possible!!!
It is possible to add command button to the flexgrid control. I think u wanted to place the command button wherever the user clicks in the Flexgrid cell below is the simple foue line code to doit.
Private Sub MSFlexGrid1_Click()
Command1.Top = MSFlexGrid1.Top + MSFlexGrid1.CellTop
Command1.Left = MSFlexGrid1.Left + MSFlexGrid1.CellLeft
Command1.Width = MSFlexGrid1.CellWidth
Command1.Height = MSFlexGrid1.CellHeight
End Sub
-
What about a certain Column and.......... Lets say there are 80 rows and in this 1 Column I want 80 Buttons....... Each button represents a room where users can chat....
The information of the room is maintianed in the Grid at Runtime by use of databases.......