Register | Login
Forum Index > Requests and Feedback > Message Box return flags
Author Message
Pages: 1
Molotov
Member
(send private message)

Posts: 49
Topics: 21

Location:
Behind Keyboard
[734] Message Box return flags - posted: 2011-11-19 17:23:06
Couldn´t find these in the includefiles so i collected them from msdn smile

Code:
enum MESSAGEBOX_RETURN_FLAGS: DWord {
  IDABORT = 3,
  IDCANCEL = 2,
  IDCONTINUE = 11,
  IDIGNORE = 5,
  IDNO = 7,
  IDOK = 1,
  IDRETRY = 4,
  IDTRYAGAIN = 10,
  IDYES = 6
}


"Lerning new things is what life is all about, if you are always doing the same old things day in and day out you might aswell just kill yourself." - ME d^_^b
Admin
Site Admin

avatar

(send private message)

Posts: 933
Topics: 55

Location:
OverHertz Studio
[741] - posted: 2011-11-19 17:39:55
thanks, i've changed them a little to match the MB_ consts and put them into user32

Code:
enum MB_RETURN_FLAGS: DWord {
  ID_OK = 1,
  ID_CANCEL = 2,
  ID_ABORT = 3,
  ID_RETRY = 4,
  ID_IGNORE = 5,
  ID_YES = 6,
  ID_NO = 7,

  ID_TRYAGAIN = 10,
  ID_CONTINUE = 11
}


Download Ziron
Get free hosting for Ziron related fan-sites and Ziron projects, contact me in private message.
Molotov
Member
(send private message)

Posts: 49
Topics: 21

Location:
Behind Keyboard
[748] - posted: 2011-11-19 19:17:37
Ah ok.. but that would make the msdn win32 refrence useless for ziron win32, just thinking out loud.

Would mean that Ziron will need it´s own flag reference pages for win32 later. smile

"Lerning new things is what life is all about, if you are always doing the same old things day in and day out you might aswell just kill yourself." - ME d^_^b
Admin
Site Admin

avatar

(send private message)

Posts: 933
Topics: 55

Location:
OverHertz Studio
[750] - posted: 2011-11-19 19:20:56
are they existent in msdn as IDOK? hmm well will change them back smile

Download Ziron
Get free hosting for Ziron related fan-sites and Ziron projects, contact me in private message.
Molotov
Member
(send private message)

Posts: 49
Topics: 21

Location:
Behind Keyboard
[751] - posted: 2011-11-19 19:22:42
Yeah, i took the name as they were there.. i always do..

"Lerning new things is what life is all about, if you are always doing the same old things day in and day out you might aswell just kill yourself." - ME d^_^b
Pages: 1
create new reply


Quick reply:

Message:



Currently Active Users:
There are currently 1 user(s) online. 0 member(s) and 1 guest(s)
Most users ever online was 1046, January 28, 2022, 2:08 pm.


Statistics:
Threads: 225 | Posts: 1848 | Members: 51 | Active Members: 51
Welcome to our newest member, yecate
const Copyright = '2011-2024 © OverHertz Ltd. All rights reserved.';
Web development by OverHertz Ltd