anybody know how to pass certain values from one vb application to another vb application invoked by the first one
Printable View
anybody know how to pass certain values from one vb application to another vb application invoked by the first one
Several methods come to mind: DDE, Command Line Parameters, Events, Registry, Files, etc. etc .......
use savesetting and getsetting commands to write the value to the registry from one app, and read it from the registry in the other
this is a little more complicated... but it is good because it doesn't write any values that you may not want to be sticking in a file or registry to be found... this link shows how to actually pass variables between 2 programs..
http://www.thescarms.com/vbasic/PassString.asp