Excel がクラッシュする このマクロを印刷プレビューとプリンター ウィンドウに使用すると、この問題を解決する方法を Google で検索しましたが、失敗しました。 PrintPreviewに使用するコードは次のとおりです
Sub Print_TimeSht()
Application.ScreenUpdating = False
With ActiveSheet.PageSetup
.PrintArea = "$A$1:$Q$599" ' set print area
.PrintHeadings = False
.PrintGridlines = False
.PrintComments = xlPrintNoComments
.CenterHorizontally = False
.CenterVertically = False
.Orientation = xlPortrait
.Draft = False
'.PaperSize = xlPaperA4
.FirstPageNumber = xlAutomatic
.Order = xlDownThenOver
.BlackAndWhite = True
.Zoom = False
.PrintErrors = xlPrintErrorsDisplayed
End With
Application.ScreenUpdating = True
With ActiveWindow
.Zoom = 80
.SelectedSheets.PrintPreview
End With
Application.Dialogs(xlDialogPrint).Show
Application.ScreenUpdating = True
End Sub
これらの問題を解決する方法私はWin7 32ビットでExcel 2010 32ビットを使用しています>>??????