Hi, I am new to windows forms.
I used the 2 lines of code below to launch a c++ code from a windows forms GUI and it worked:
Dim lngReturn As Long
lngReturn = Shell("c:\MyProgams\cfile.exe", vbNormalFocus)
I hope someone can help with the issue below:
My interface includes some text boxes. The user enters some numbers in these text boxes and I want to pass and use these parameters in the c++ code
Any idea how to do it?
Thanks !!