i have a code that ask for a password. i need to disable the exit button "X". here is the code i'm using:
Dim myInputBoxVariable As Variant
myInputBoxVariable = Application.InputBox(Prompt:="", Title:="PLEASE ENTER PASSWORD", Default:="Enter Password Here")
'MsgBox "Your input was: " & myInputBoxVariable
If myInputBoxVariable = "False" Then
Exit Sub
End If