“VBA Tak Nie” Kod odpowiedzi

VBA Tak Nie

Dim answer As Integer
answer = MsgBox("Text", vbQuestion + vbYesNo + vbDefaultButton2, "Message Box Title")
If answer = vbYes Then
  MsgBox "Yes"
Else
  MsgBox "No"
End If
Muddy Moose

VBA Tak Nie

Sub effacerB2()

    If MsgBox("Etes-vous certain de vouloir supprimer le contenu de B2 ?", vbYesNo, "Demande de confirmation") = vbYes Then
        Range("B2").ClearContents
        MsgBox "Le contenu de B2 a été effacé !"
    End If

End Sub
Drab Dog

Odpowiedzi podobne do “VBA Tak Nie”

Pytania podobne do “VBA Tak Nie”

Więcej pokrewnych odpowiedzi na “VBA Tak Nie” w VBA

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu