I am using Masm32, and QEditor. I can assemble from the editor just fine, but when I try to assemble from the command prompt I get a link.exe not found error.
Any Ideas.
hi
if masm32 in c:\
use this
\masm32\bin\cvtres.exe /machine:ix86 rsrc.res
\masm32\bin\ml.exe /c /coff source.asm
\masm32\bin\link.exe /SUBSYSTEM:WINDOWS source.obj rsrc.obj
if exist *.obj del *.obj
pause