I already have the data collected from RS232 comm1 but how can I copy this data to the clip board and paste it into any aplication that has focus?
Printable View
I already have the data collected from RS232 comm1 but how can I copy this data to the clip board and paste it into any aplication that has focus?
hi, i'm not aware of RS232 control..
to copy to & from clipboard use "Clipboard" global object.
Ex.
hope this may be use ful...Code:Clipboard.GetData 'Getting the stored pic.
Clipboard.GetText 'Getting the text
Clipboard.SetData 'Saving the pic to clipboard
Clipboard.SetText 'Saving the text to clipboard
Venu