Hello again!

I'm trying to disable the Print button while the user is in the Full View Print Preview mode but I can't seem to get it right even though I've seen the code work for other people.

Private Sub CommandButton5_Click()

UserForm1.Hide

    Sheet3.PrintPreview False
    Application.CommandBars("Print Preview").Controls("Print").Enabled = False

UserForm1.Show

End Sub
Can anyone figure out what's wrong with this code?

Thank you! ^^