|
-
Aug 12th, 2010, 11:06 AM
#1
Thread Starter
Member
[RESOLVED] VB6 - Can you make MSHFlexGrid cell have a click effect
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
Tags for this Thread
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
|