EdsonZanatta Member Jan 5, 2024 #1 Guys, in the Msgbox2Async function, the order is inverted, I put (msg,title,"yes","","no",null,true) and the display reverses it, NO and YES appear
Guys, in the Msgbox2Async function, the order is inverted, I put (msg,title,"yes","","no",null,true) and the display reverses it, NO and YES appear
EdsonZanatta Member Jan 6, 2024 #2 example: Msgbox2Async("My message here?","Title","Yes","","No",Null,True) wait for msgbox_result (result As Int) Log(result) If result=DialogResponse.POSITIVE Then In msgbox display : Msgbox2Async("My message here?","Title","No","","Yes",Null,True) Upvote 0
example: Msgbox2Async("My message here?","Title","Yes","","No",Null,True) wait for msgbox_result (result As Int) Log(result) If result=DialogResponse.POSITIVE Then In msgbox display : Msgbox2Async("My message here?","Title","No","","Yes",Null,True)
Alessandro71 Well-Known Member Licensed User Longtime User Jan 6, 2024 #3 That’s the way the OS order choices. you can order them differently, but be aware that the result codes need to be handled accordingly Upvote 0
That’s the way the OS order choices. you can order them differently, but be aware that the result codes need to be handled accordingly