Jump to content
View in the app

A better way to browse. Learn more.

Tuts 4 You

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Newbie Help

Featured Replies

Posted

i read the tut by gopitt and when i assemble(go all)

.386
.model flat, stdcall
option casemap:none include windows.inc
include kernel32.inc
include user32.inc
includelib 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,0
end start

i 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) occured

whats rong...plz explin

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.

  • Author

ER....MIA WHAT CONFIGURATION !

can you please explain yours....!

Edited by starzboy

Check your PM.

  • Author

thaz miz but it dosent work !

same damn error !

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

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. :)

  • 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 !

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

do this it works on masm32

.486
.model flat, stdcall
option casemap:noneinclude \masm32\include\windows.inc
include \masm32\include\kernel32.inc
includelib \masm32\lib\kernel32.lib
include \masm32\include\user32.inc
includelib \masm32\lib\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,0
end start

Create an account or sign in to comment

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.