how to copy and paste data without using clipboard

M

mamatha

Hi

I have one VB application,in that one form consits of
textbox.
Textbox conatains some data,i want to copy and paste that
data into another application without using clipboard
oprations.How can it is possible in VB?
If any one knows the source code or any related website
URL's please let me know.


Mamatha
 
G

Guest

You can look at remoting and pass the data from the first app to the second.

Or you can even access the clipboard programatically from VB using Clipboard.SetDataObject and other functions.
 
H

Herfried K. Wagner [MVP]

* "mamatha said:
I have one VB application,in that one form consits of
textbox.
Textbox conatains some data,i want to copy and paste that
data into another application without using clipboard
oprations.How can it is possible in VB?

Do you have control over the other application (its source code)?
 
P

Paul Bromley

You could use Sendkeys?? I have also used the dll developed by the producers
of AutoIT, that I find very helpful in this sort of situation, and enables
you to have at least some control over timing etc, in that you can set it to
wait for active windows and various actions. I searched high and low to get
this degree of functionality to get informtaion going from my applicatiosn
to other 3rd party stuff that I could manage in no other way.

http://www.autoitscript.com/autoit3/

Best wishes

Paul Bromley
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top