DOSYA İndirmek/Yüklemek için ÜCRETLİ ALTIN ÜYELİK Gereklidir!
Altın Üyelik Hakkında Bilgi
Private Sub Workbook_BeforePrint(Cancel As Boolean)
If ActiveSheet.Name = "Sayfa1" Then
If ActiveSheet.PageSetup.PrintArea <> "$A$6:$I$11" Then
Cancel = True
ActiveSheet.PageSetup.PrintArea = "$A$6:$I$11"
ActiveSheet.PrintOut Copies:=1, Collate:=True, _
IgnorePrintAreas:=False
End If
End If
End Sub
End Sub
Sub Menu_Gizle()
Application.ExecuteExcel4Macro "Show.ToolBar(""Ribbon"",False)"
End Sub
Sub Menu_Goster()
Application.ExecuteExcel4Macro "Show.ToolBar(""Ribbon"",True)"
End Sub