1.

Solve : Passing value from a text box to a C program?

Answer»

hello there,
I WOULD like to DESIGN a C program that would take a string input from a text box designed in VBScript.
The task of VBScript code would be to call a C program and pass a string variable.
Is it possible?
please help.
Thank youQuote from: TRIPTI on MARCH 24, 2009, 11:43:25 PM

The task of VBScript code would be to call a C program and pass a string variable.
Is it possible?
yes see below

Code: [Select]s=inputbox("Enter argument for c program")
wsh.echo s
createobject("wscript.shell").run ".\ProgramC.exe " & s,1,false


Discussion

No Comment Found