MessageRequester Constant

Got an idea for enhancing PureBasic? New command(s) you'd like to see?
User avatar
Paul
PureBasic Expert
PureBasic Expert
Posts: 1243
Joined: Fri Apr 25, 2003 4:34 pm
Location: Canada
Contact:

MessageRequester Constant

Post 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
Image Image
User avatar
PedroMartins
User
User
Posts: 47
Joined: Sat Sep 02, 2017 7:30 pm

Re: MessageRequester Constant

Post by PedroMartins »

*** to Administrator: please delete this post reply ***
Last edited by PedroMartins on Fri Apr 06, 2018 2:32 pm, edited 1 time in total.
Marc56us
Addict
Addict
Posts: 1477
Joined: Sat Feb 08, 2014 3:26 pm

Re: MessageRequester Constant

Post 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:
Post Reply