how to delete "non-commercial use" from title bar

G

Guest

I bought office home and student 2007 and the word excel programs has
'non-commercial use' in the title bar. How do I get rid of this in the title
bar header of the program?
 
G

Gord Dibben

You could try some code in the Thisworkbook module.

Don't know if will work since I don't use 2007 but no harm.

Sub workbook_open()
Application.Caption = "MYAPP"
End Sub


Private Sub Workbook_BeforeClose(Cancel As Boolean)
Application.Caption = ""
End Sub


Gord Dibben MS Excel MVP
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top