An Idiot with a Win32 programming Problem

Started by
2 comments, last by Motwner 22 years, 3 months ago
Recently, I''ve been scripting with Win32 using C++. The first time I compile my program, everything is successful. The second time I compile I get the following error: "LINK : fatal error LNK1104: cannot open file "Debug/win32key.exe" Error executing link.exe." I hope someone can tell me what I''m doing wrong, it would be much help. -Later
Advertisement
try rebuilding your program


if this doesnt work it is possible the application you are making is running, do ctrl alt delete and see if win32key is running
Seems like you launch your app once it''s build and then try to rebuild it whithout closing the app. The file cannot be rebuild if the app is launched.
Yeah... go to your task manager to manually close the program. Chances are you''re not posting the WM_QUIT message right. It seems like that was the problem anyway--I used to have that happen a lot.
WNDCLASSEX Reality;......Reality.lpfnWndProc=ComputerGames;......RegisterClassEx(&Reality);Unable to register Reality...what's wrong?---------Dan Uptonhttp://0to1.orghttp://www20.brinkster.com/draqza

This topic is closed to new replies.

Advertisement