Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Transffering Strings to C++ from vbs

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I am new at this vbscript. I need to transfer a file name recieved through vbscript textbox to a c++ program. Right now I am using a text file. Is there a cleaner way to do it in vbs.
 
have you tried explicitly casting the string when you pass it into your program?

eg:

someStr = cstr(someStr)

that's what we do for our Java here.
leo leo
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top