Posts by alexandre • 1 point
1 post
-
0
votes5
answers2964
viewsA: How to display a confirmation message when clicking delete from the grid option?
Simply: If MsgBox("Tem certeza que deseja sair?", vbYesNo, "Confirmação") = vbYes Then If vbYes Then Me.Close() End If If vbNo Then Else End If End If…