I wrote an application in Excel 2003. When document opens, a userform is displayed. User inputs data which gets formatted to a spreadsheet to be previewed and printed. User never types directly on the spreadsheet.
In Excel 2003, it worked fine. But when I try to run my .xls file in Excel 2007, the print preview buttons are greyed out.
Here's my code, after the spreadsheet has been formatted.
Sheets(1).Activate
Sheets(1).Unprotect Password:="mypassword"
Application.ScreenUpdating = True
form1.Hide
ActiveWindow.SelectedSheets.PrintPreview
' At this point, user sees Print Preview, but unfortunately cannot print the data!!!
Sheets(1).Protect userinterfaceonly:=True, Password:="mypassword"
form1.Show vbModal
Anyone ever see this problem before? Thanks for your help.
In Excel 2003, it worked fine. But when I try to run my .xls file in Excel 2007, the print preview buttons are greyed out.
Here's my code, after the spreadsheet has been formatted.
Sheets(1).Activate
Sheets(1).Unprotect Password:="mypassword"
Application.ScreenUpdating = True
form1.Hide
ActiveWindow.SelectedSheets.PrintPreview
' At this point, user sees Print Preview, but unfortunately cannot print the data!!!
Sheets(1).Protect userinterfaceonly:=True, Password:="mypassword"
form1.Show vbModal
Anyone ever see this problem before? Thanks for your help.

Help
Welcome to BleepingComputer, a free community where people like yourself come together to discuss and learn how to use their computers. Using the site is easy and fun. As a guest, you can browse and view the various discussions in the forums, but can not create a new topic or reply to an existing one unless you are logged in. Other benefits of registering an account are subscribing to topics and forums, creating a blog, and having no ads shown anywhere on the site.


Back to top








