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 topici 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
Instead of a message box, consider using a dialog box, you can make it however you want.
HR,
Ghandi
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()
.if rv(MessageBox,0,"bla","bla",MB_OKCANCEL) == IDOK
; OK-Button
call YourProc
.endif
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
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)
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
Custom MessageBox (http://www.catch22.net/tuts/custom-messagebox)