Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub DeleteButton_Click()
If MsgBox("Do you really want to delete?", vbOKCancel, "DELETE?" = vbCancel Then Exit Sub
...
Your DELETE Procedure ...
...
End Sub
Private Sub cmdDelete_Click()
If MsgBox("Are you sure you want to delete?", _
vbYesNo Or vbQuestion Or vbDefaultButton2, _
"Delete this?") = vbYes Then
[green]
'Your Delete logic here
[/green]
End If
End Sub