Passing information form C app to VB

  • Thread starter Thread starter Yoavo
  • Start date Start date
Y

Yoavo

Hi,
I have a VB application and a C application, and I need to pass parameters
which are char*, int and double from one application to the other.
What is the best way to do it without using COM ?

Yoav.
 
well if COM is out of the question then you might use

1.exchange files ( good old I.O. )
2. DDE ( yes it is still possible with VB.Net )
3. send messages through the window API
4 if we are talking about litle data you could use the comand$ i.c.w a shell
from one of the 2 apps ( or both to each other )


regards

Michel Posseth [MCP]
 
Back
Top