

InterviewSolution
Saved Bookmarks
1. |
Solve : Passing value from a text box to a C program? |
Answer» hello there, The task of VBScript code would be to call a C program and pass a string variable.yes see below Code: [Select]s=inputbox("Enter argument for c program") wsh.echo s createobject("wscript.shell").run ".\ProgramC.exe " & s,1,false |
|