Hello!
Can anyone help me to get the code for the following. Using MS Access as backend.
How to get the data copied on a clip board from MSHFlexGrid (desired Cell) Cell?
Any cell that I click on should be copied to the Clipboard.
Thanks
Hello!
Can anyone help me to get the code for the following. Using MS Access as backend.
How to get the data copied on a clip board from MSHFlexGrid (desired Cell) Cell?
Any cell that I click on should be copied to the Clipboard.
Thanks
Code:Private Sub MSHFlexGrid1_Click()
Clipboard.Clear
Clipboard.SetText MSHFlexGrid1.Text, flexCFText
End Sub