When the following code runs:
A = MsgBox(Prompt:="Do you wish to play on two courts?", Buttons:=vbYesNo + vbQuestion, Title:="AVAILABLE COURTS")
If A = vbYes Then
B = MsgBox(Prompt:="Canadian Doubles match on one court and singles match on the other!", Title:="2 COURTS AVAILABLE")
m = "TERRAINS 5-B"
o = "TERRAINS 5-B (2)"
p = "MATCHS"
CASETR
End If
If A = vbNo Then
C = MsgBox(Prompt:="O.K. 1 doubles match on available court et 1 player awaiting on the bench!", Title:="ONLY 1 COURT AVAILABLE")
m = "TERRAINS 5-a"
o = "TERRAINS 5-a (2)"
p = "MATCHS Banc"
CASETR
End If
The "Yes" and "No" buttons in the message box read "Oui" and "Non" (French). How can I edit these button captions to read "Yes" and "No" in English?