Msgbox3

volvomann

Active Member
Licensed User
Longtime User
Hallo!

I do this "If result = DialogResponse.negative Then" but no result, how can i test on result from the Msgbox3?
 

nfordbscndrd

Well-Known Member
Licensed User
Longtime User
It would help if you showed the complete code you use with MsgBox3.
Here is code I'm using and it works fine:

B4X:
Dim msg As Msgbox3WithoutDim
i = msg.Show("Continue?", title, "Yes", "", "No", Null)
If i = DialogResponse.NEGATIVE Then Return
 
Upvote 0

volvomann

Active Member
Licensed User
Longtime User
It would help if you showed the complete code you use with MsgBox3.
Here is code I'm using and it works fine:

B4X:
Dim msg As Msgbox3WithoutDim
i = msg.Show("Continue?", title, "Yes", "", "No", Null)
If i = DialogResponse.NEGATIVE Then Return

Thank you that fix itt
 
Upvote 0
Top