Found that the order of the arguments of Msgbox2Async come out the wrong way:
Makes the buttons come out as:
Yes No Cancel
And that is how I want it, but the arguments description suggests I should do:
Is this a bug somewhere in B4A or am I overlooking something?
Using the latest version.
RBS
B4X:
Msgbox2Async("Do clickable patient markers?", "List patients to map", _
"Cancel", "Yes", "No", General.bmpIcon32, False)
Wait For Msgbox_Result(iResult As Int)
Makes the buttons come out as:
Yes No Cancel
And that is how I want it, but the arguments description suggests I should do:
B4X:
Msgbox2Async("Do clickable patient markers?", "List patients to map", _
"Yes", "Cancel", "No", General.bmpIcon32, False)
Wait For Msgbox_Result(iResult As Int)
Is this a bug somewhere in B4A or am I overlooking something?
Using the latest version.
RBS