Hello Fellas,
I need help with the below code. It works fine but not exactly how I want it to work.
What it does?
It copies only the very first column data to clipboard of the selection.
What I want it do?
To copy data entire row data to clipboard of the selection.
Code as below -
Private Sub ListBox1_Click()
Dim MyData As New DataObject
Set MyData = New DataObject
MyData.SetText Received_Emails.ListBox1.Value
MyData.PutInClipboard
End Sub
Please help!
Regards,
Bharat.
I need help with the below code. It works fine but not exactly how I want it to work.
What it does?
It copies only the very first column data to clipboard of the selection.
What I want it do?
To copy data entire row data to clipboard of the selection.
Code as below -
Private Sub ListBox1_Click()
Dim MyData As New DataObject
Set MyData = New DataObject
MyData.SetText Received_Emails.ListBox1.Value
MyData.PutInClipboard
End Sub
Please help!
Regards,
Bharat.