Posted June 14, 200619 yr i read the tut by gopitt and when i assemble(go all).386.model flat, stdcall option casemap:none include windows.incinclude kernel32.inc include user32.incincludelib kernel32.lib includelib user32.lib.data MsgBoxCaption db "Simple MessageBox Program",0 MsgBoxText db "Hello World!",0 .code start: invoke MessageBox, NULL, addr MsgBoxText, addr MsgBoxCaption, MB_OK invoke ExitProcess,0end starti get an error\Masm32\Bin\rc /v /I"\Masm32\Include" "D:\Program Files\WinAsm\Samples\Dialog\Dialog.rc"Make error: Cannot create process.\Masm32\Bin\ML /c /coff /Cp /nologo /I"\Masm32\Include" "D:\Program Files\WinAsm\Samples\Dialog\Dialog.asm"Make error: Cannot create process.Make finished. 2 error(s) occuredwhats rong...plz explin
June 14, 200619 yr I don't have any problem with source you provide... It works fine..... I think the problem may be in the configurations of winasm...Check once again.
June 15, 200619 yr Author ER....MIA WHAT CONFIGURATION !can you please explain yours....! Edited June 15, 200619 yr by starzboy
June 15, 200619 yr starzboy, are you making a new project for each program you write?because you seem to be including "D:\Program Files\WinAsm\Samples\Dialog\Dialog.rc" and "D:\Program Files\WinAsm\Samples\Dialog\Dialog.asm" in your project, two files completely unnecessary for what you are trying to do
June 15, 200619 yr I had the same problem when i done gopitt's tut. Here is what I did to solve the problem. D/L MASM, and reinstall it. That fixed mine, maybe it will fix yours.
June 16, 200619 yr Author there was a lamer's problem !i for got to keep my eyes open and made a stupid mistake !thanx for all the help !got it workin now !many thanx to Lena Aunty for the tip !
June 22, 200619 yr Personally i had this problem.I had installed Masm in C:/Masm and I was saving the files in another HDD..When i saved on Documents and Settings everything was alright
June 24, 200619 yr do this it works on masm32.486.model flat, stdcalloption casemap:noneinclude \masm32\include\windows.incinclude \masm32\include\kernel32.incincludelib \masm32\lib\kernel32.libinclude \masm32\include\user32.incincludelib \masm32\lib\user32.lib.dataMsgBoxCaption db "Simple MessageBox Program",0MsgBoxText db "Hello World!",0.codestart:invoke MessageBox, NULL, addr MsgBoxText, addr MsgBoxCaption, MB_OK invoke ExitProcess,0end start
Create an account or sign in to comment