Home > Software engineering >  Button calls. CPP file content
Button calls. CPP file content

Time:10-06

I set up a dialog based application, add a button
Void CMoveEnterDlg: : the save ()
{
}
I want to realize the function of the is: click on the button, call I add MoveEnter. CPP in content, and begin to implement MoveEnter. CPP the content inside the


Consult a great god tell me how to write code in it

CodePudding user response:

Save MoveEnter. CPP is to say, just for the text, you want to perform, must first be compiled, and links to generate an executable module, which is called cl. Exe and link. Exe
The two are respectively compile tools and links, the two work in vs installation directory can be found, IDE compiles connection is done by calling it even have a tool, please refer to the specific use of parameters, if the source code and correct will generate the target module, can be exe can be DLL, specific module type depending on your incoming command line parameters,

CodePudding user response:

Are you want to invoke the CPP the function in the class or something?
  • Related