Sub ExempleAide()
Dim Msg, Style, Title, Help, Ctxt, Response, MyString
Msg = "Vous-voulez continuer?"
Style = 3 + 16384
Title = "MsgBox Demonstration"
Help = "DEMO.HLP"
Ctxt = 1000
Response = MsgBox(Msg, Style, Title, Help, Ctxt)
If Response = vbYes Then ' User chose Yes.
MyString = "Oui" ' Perform some action.
Else ' User chose No.
MyString = "Non" ' Perform some action.
End If
End Sub