Theera Well-Known Member Licensed User Longtime User Feb 4, 2012 #1 I think Msgbox() Function look fix only English Language. "OK" ,"NO","Cancel" How can I change in my language?:sign0163:
I think Msgbox() Function look fix only English Language. "OK" ,"NO","Cancel" How can I change in my language?:sign0163:
klaus Expert Licensed User Longtime User Feb 4, 2012 #2 The MsgBox function shows only the OK button. In the MsgBox2 function you set your own text to the buttons. Best regards. Upvote 0
The MsgBox function shows only the OK button. In the MsgBox2 function you set your own text to the buttons. Best regards.
ciprian Active Member Licensed User Longtime User Aug 7, 2013 #3 How can i use the click on the OK button? Upvote 0
vampirbcn Active Member Licensed User Longtime User Aug 7, 2013 #4 One example: B4X: If Msgbox2("Message","Atention","Ok","Cancel","No",Null)=DialogResponse.POSITIVE Then ... ... End If Last edited: Aug 7, 2013 Upvote 0
One example: B4X: If Msgbox2("Message","Atention","Ok","Cancel","No",Null)=DialogResponse.POSITIVE Then ... ... End If
ciprian Active Member Licensed User Longtime User Aug 7, 2013 #5 I'm having a MsgBox...not MsgBox2. i have only the OK button. Upvote 0
vampirbcn Active Member Licensed User Longtime User Aug 7, 2013 #6 Can not be made any verification, click ok to make the process continues at the next instruction. Msgbox, do not returns DialogResponse values. Excuse my bad English..- Upvote 0
Can not be made any verification, click ok to make the process continues at the next instruction. Msgbox, do not returns DialogResponse values. Excuse my bad English..-
vampirbcn Active Member Licensed User Longtime User Aug 7, 2013 #7 Another option B4X: If Msgbox2("Message","Atention","Ok","","",Null)=DialogResponse.POSITIVE Then ... ... End If Upvote 0
Another option B4X: If Msgbox2("Message","Atention","Ok","","",Null)=DialogResponse.POSITIVE Then ... ... End If
ciprian Active Member Licensed User Longtime User Aug 7, 2013 #8 Thank you...i'll have to use MsgBox2 Upvote 0