The MASM Forum Archive 2004 to 2012

General Forums => The Workshop => Topic started by: maruf10 on April 08, 2010, 02:59:46 PM

Title: MessageBox help
Post by: maruf10 on April 08, 2010, 02:59:46 PM
Hello all ....

How can i create custom MessageBox ??
There will be two button "OK" and "CANCEL" and a string ..
Pressing OK will call a function and pressing CANCEL will exit the code ....
how can i do this ??

an off topic
i use
Quote
echo some text >> a.txt
to append some text in a.txt ... what is the system to do the same using masm32  ??

Thanks in advance
Title: Re: MessageBox help
Post by: Ghandi on April 08, 2010, 03:24:55 PM
Instead of a message box, consider using a dialog box, you can make it however you want.

HR,
Ghandi
Title: Re: MessageBox help
Post by: Slugsnack on April 08, 2010, 03:26:44 PM
http://msdn.microsoft.com/en-us/library/ms645505(VS.85).aspx
set uType as MB_OKCANCEL then check the return value after you call the function.

for string concatentation, you could use the crt function strcat() or you could use the masm32 function szappend() or szCatStr()
Title: Re: MessageBox help
Post by: qWord on April 08, 2010, 03:32:48 PM
.if rv(MessageBox,0,"bla","bla",MB_OKCANCEL) == IDOK
; OK-Button
call YourProc
.endif
Title: Re: MessageBox help
Post by: Slugsnack on April 08, 2010, 03:34:35 PM
Quote from: qWord on April 08, 2010, 03:32:48 PM
.if rv(MessageBox,0,"bla","bla",MB_OKCANCEL) == IDOK
; OK-Button
call YourProc
.endif

you mean :
MessageBox,0,chr$("bla"),chr$("bla"),MB_OKCANCEL
Title: Re: MessageBox help
Post by: qWord on April 08, 2010, 03:43:37 PM
Quote from: Slugsnack on April 08, 2010, 03:34:35 PM
you mean :
MessageBox,0,chr$("bla"),chr$("bla"),MB_OKCANCEL
no - string literals are supported by rv-macro (and fn)
Title: Re: MessageBox help
Post by: Slugsnack on April 08, 2010, 04:24:36 PM
Quote from: qWord on April 08, 2010, 03:43:37 PM
Quote from: Slugsnack on April 08, 2010, 03:34:35 PM
you mean :
MessageBox,0,chr$("bla"),chr$("bla"),MB_OKCANCEL
no - string literals are supported by rv-macro (and fn)

haha pretty cool   :bg
Title: Re: MessageBox help
Post by: Vortex on April 08, 2010, 06:59:12 PM
Custom MessageBox (http://www.catch22.net/tuts/custom-messagebox)