Hi,

I was wondering if it would be possible to make a cell in a MSHFlexGrid act like it has been clicked (similar to a button click). For example if I had a pictureBox control that has it's appearance property set to 0 - Flat. I can add the following code to create a click effect:

Private Sub Picture1_MouseDown(Index As Integer, Button As Integer, Shift As Integer, x As Single, y As Single)
Picture1.Appearance = 1 '3D
End Sub

Private Sub Picture1_MouseUp(Index As Integer, Button As Integer, Shift As Integer, x As Single, y As Single)
Picture1.Appearance = 0 'Flat
End Sub

Does anyone know if you can do something similar to a cell in a flexgrid?

Kind Regards