Data exchange between two executables

  • Thread starter Thread starter Arun
  • Start date Start date
A

Arun

I have two vb.net applications running on the same machine, App1.exe and
App2.exe.
On the click of a button in App1.exe, can I retrieve a value from a textbox
in App2.exe?

TIA

-AN
 
Hi Arun,

I dont think its possible to get Textbox value which is in a different
application ..exe file.

But what you can do is in App1.exe write code to write the textbox value to
an XML file and then read the value from XML file from the App2.exe.

Hope this helps you.

Thanks
Raghavendra
 
* "Arun said:
I have two vb.net applications running on the same machine, App1.exe and
App2.exe.
On the click of a button in App1.exe, can I retrieve a value from a textbox
in App2.exe?

Remoting or sockets.
 
Back
Top