sourcecode
Broken In
I want to pass parameters from a window application of vb.NET to a c++ code. How can I do this??
sakumar79 said:You want to call c++ code that has been compiled into .exe right? Also, I am assuming that you are doing this by using a system call to run the executable... If so, u can simply include the parameters to the command to be executed and use the argument string of the main function in C++ to retrieve the parameters.
Arun
sourcecode said:what is the execution command in vb?do i need to add the cpp file in the project or can execute it independantly?
The Incredible said:Dont mind but wat r these?
parameters
command line parameters
Vb.NET
system call
compiled into .exe
sakumar79 said:compiled into .exe - Program is written in high-level language that is understood by humans. Then, it is compiled by an assembler into binary language understood by the computer. For MS-based systems, typically compiling will result in a .exe file creation.
Arun
The Incredible said:BTW as u said for MS-based systems there r sum programs to convert our language to binary lang of computer. so do u know of a software which does da opposite means converts binary language to our language.
i've sum .chk files created by scandisk n cant read 'em as they are in binary language perhaps. help needed.
The Incredible said:sakumar79 said:compiled into .exe - Program is written in high-level language that is understood by humans. Then, it is compiled by an assembler into binary language understood by the computer. For MS-based systems, typically compiling will result in a .exe file creation.
Arun
BTW as u said for MS-based systems there r sum programs to convert our language to binary lang of computer. so do u know of a software which does da opposite means converts binary language to our language.
i've sum .chk files created by scandisk n cant read 'em as they are in binary language perhaps. help needed.
puja399 said:Then I guess u need to learn reversing.
The Incredible said:puja399 said:Then I guess u need to learn reversing.
I'm only 15 and I think it is da age of learning only. So, I want to learn. Teach ME.
puja399 said:U can start by learning Windows API Programming in C/C++ (Use VC++) and then Win32 assembly language programming.
puja399 said:BTW, what C++ compiler ru using now? I hope its not TC++.