View previous topic :: View next topic |
Author |
Message |
Bart Valued Newbie
Joined: 24 Jun 2003 Posts: 41 Location: Netherlands
|
Posted: Tue Mar 20, 2007 8:47 am Post subject: |
|
|
Hi,
I found an other way of sending data from one application to an other, it is not like a DLL but it works for me. Using the PIPE function/command and STDIO by using VDSINET.DLL
The slave program:
Code: |
external vdsinet.dll
#define command,net
net cgi,write,"You send: "%1
stop
|
Compile this as TEST.EXE
The main program:
Code: |
run TEST.EXE Hello,pipe,wait
info @pipe()
|
This do the job for me, i can create a system specific executable that does the controls and one main program that does the handling.
Bart |
|
Back to top |
|
|
cnodnarb Professional Member
Joined: 11 Sep 2002 Posts: 763 Location: Eastman, GA
|
Posted: Sat Apr 17, 2021 3:06 am Post subject: |
|
|
Exactly what I am looking for today in 2021! Can't wait to test! |
|
Back to top |
|
|
cnodnarb Professional Member
Joined: 11 Sep 2002 Posts: 763 Location: Eastman, GA
|
Posted: Sat Apr 17, 2021 3:17 am Post subject: |
|
|
Doesn't seem to work in VDS 5 ;/
I have a slick ideal, but can't get it working |
|
Back to top |
|
|
cnodnarb Professional Member
Joined: 11 Sep 2002 Posts: 763 Location: Eastman, GA
|
Posted: Sat Apr 30, 2022 3:34 am Post subject: |
|
|
This method of piping works with VDS 6 console apps, also you can rename them to DLL's. |
|
Back to top |
|
|
|