Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to pass data (structure) from on exe to another?

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
How can i pass some data from one EXE to anther running EXe
in VB?
 
There are at least hree ways of doing this. Here are three:

1. Use an intermedaitery textual file which you can read or write to - possibly even XML.

2. Create one as an ActiveX EXE and then bring use that EXE in the other.

3. use an intermediatery DLL that implements callbacks. This is just another working on idea 2.

I haven't looked fully into it yet but you might try lokking at SOAP to provide a publicly accessible interface. Again this is just a reworking of the concept used in ideas 2 and 3.

James :) James Culshaw
jculshaw@active-data-solutions.co.uk
 
Someone correct me if i'm wrong, but using INI files or the system registry and API calls should do the trick.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top