I am wondering can I modify the title of the message box title? And can I use my own icon instead of the icons provided by NSIS.
Thanks!
Thanks!
code:
!macro MsgBox out text title flags
System::Call "user32::MessageBox(i $HWNDPARENT, t '${text}', t '${title}', i ${flags}) i.s"
Pop ${out}
!macroend
Section "MsgBoxTest"
!insertmacro MsgBox $0 "Hello world! This is just a test. Continue?" "Awesome title" 0x20|0x3
MessageBox MB_OK "Return Code: $0"
SectionEnd
GetDlgItem $0 $HWNDPARENT 1
EnableWindow $0 0
Comment