Page 1 of 1

MessageRequester Constant

Posted: Tue Apr 03, 2018 2:47 am
by Paul
Could we get #PB_MessageRequester_Question=32
just to complete the full set of MessageRequester Constants?

Currently we have to use Windows API constant #MB_ICONQUESTION

Re: MessageRequester Constant

Posted: Tue Apr 03, 2018 11:32 am
by PedroMartins
*** to Administrator: please delete this post reply ***

Re: MessageRequester Constant

Posted: Tue Apr 03, 2018 12:51 pm
by Marc56us
You can use numerical values. They are the same as in VB, VBA etc. It's even faster than typing the text (for Windows, it works, for others, I haven't tested it).

Code: Select all

MessageRequester("", "", 16)
MessageRequester("", "", 32)
MessageRequester("", "", 48)
MessageRequester("", "", 64)
:wink: