I'm a new VB user...I'm quite new in C++ too
Here's my problem. I have a program in VB and I need to pass the value from that VB program to a C++ Program. How do I go about doing this?...
Please help Me...!!!...
thanx
Printable View
I'm a new VB user...I'm quite new in C++ too
Here's my problem. I have a program in VB and I need to pass the value from that VB program to a C++ Program. How do I go about doing this?...
Please help Me...!!!...
thanx
The first way that comes to mind is to pass command line arguments such as:
In your C++ program then read the arguments passed to your program and take appropriate actions.VB Code:
Shell "mycppexe.exe someargument", vbNormalFocus
What Filburt posted is pretty much the main option.
Could you give us a little more infromation, details?