MrMajik
IS-IT--Management
- Apr 2, 2002
- 267
I have the right mouse click menu working and am able to copy the contents of one cell of an MsFlexGrid.
Private Sub mnuCopy_Click()
Clipboard.Clear
Clipboard.SetText frmMain.MSFlexGrid2.Text
End Sub
I want to copy a range of cells so they can be pasted into Excel. Is this possible?
Thanks in advance.
MrMajik
Private Sub mnuCopy_Click()
Clipboard.Clear
Clipboard.SetText frmMain.MSFlexGrid2.Text
End Sub
I want to copy a range of cells so they can be pasted into Excel. Is this possible?
Thanks in advance.
MrMajik