I was trying to make a notepad with a Advance save system, the code is:
MsgBox("Do you want to Save?", vbQuestion+vbYesNoCancel, "Do you want to Save?")
If MsgBoxResult.Yes then
*Private Coding*
End If
If MsgBoxResult.No Then
End
End If
If MsgBoxResult.Cancel Then
Stop
End If
It keeps skipping and going to the save if i hit "No" or "Cancel".
Whats wrong? Anything Missing?