Where is Project Properties in VC++.NET?

  • Thread starter Thread starter bin lee
  • Start date Start date
B

bin lee

I don't know if this is the right place to post this
question, and I apologize if it isn't.

I came across this error in VC++.NET: "error LNK2019:
unresolved external symbol _WinMain@16 referenced in
function _WinMainCRTStartup."

In the support pages it suggested: "For Visual C++ .NET:
In the Advanced category of the Linker folder in the
Project Properties dialog box, set the Entry Point to
wWinMainCRTStartup."

My problem is, I can't seem to locate the Project
Properties dialog box in VC++.NET. Can someone please tell
me how I can reach that box?

Thanks
 
My problem is, I can't seem to locate the Project
Properties dialog box in VC++.NET. Can someone please tell
me how I can reach that box?

Select the project in the Solution Explorer pane, right click,
properties.

Dave
 
I was able to find the Project Properties and change it
according to the support pages. However, I still get the
same error.

"error LNK2019: unresolved external symbol _wWinMain@16
referenced in function _wWinMainCRTStartup"

Any suggestions?

This was a Win32 app, console, with empty project.
 
I was able to find the Project Properties and change it
according to the support pages. However, I still get the
same error.

"error LNK2019: unresolved external symbol _wWinMain@16
referenced in function _wWinMainCRTStartup"

Any suggestions?

This was a Win32 app, console, with empty project.

How have you arrived at this problem - from the error, you may be
trying to create a Windows application rather than a console
application.

Dave
 
Back
Top