robhargreaves
Board Regular
- Joined
- Feb 6, 2005
- Messages
- 85
Hi,
I have some 'very new to IT users' using my spreadsheet and so have found the following code to allow for a dialogue box to pop up from the click of a button allowing the user to select any sheet from the workbook and to print it
I am happy with the code although I would like to know how to name some sheets to leave out of the list.
Can anyone help?
I know I will have to set them out in the loop creating the checkboxes for each sheet but dont know how.
Many Thanks
Rob
I have some 'very new to IT users' using my spreadsheet and so have found the following code to allow for a dialogue box to pop up from the click of a button allowing the user to select any sheet from the workbook and to print it
Code:
Sub Print_Sheets()
Dim i As Integer
Dim TopPos As Integer
Dim SheetCount As Integer
Dim PrintDlg As DialogSheet
Dim CurrentSheet
Dim cb As CheckBox
Application.ScreenUpdating = False
' Check for protected workbook
If ActiveWorkbook.ProtectStructure Then
MsgBox "Workbook is protected.", vbCritical
Exit Sub
End If
' Add a temporary dialog sheet
Set CurrentSheet = ActiveSheet
Set PrintDlg = ActiveWorkbook.DialogSheets.Add
SheetCount = 0
' Add the checkboxes
TopPos = 40
For i = 1 To ActiveWorkbook.Sheets.Count
Set CurrentSheet = ActiveWorkbook.Sheets(i)
' Skip empty sheets and hidden sheets
If CurrentSheet.Visible Then
SheetCount = SheetCount + 1
PrintDlg.CheckBoxes.Add 78, TopPos, 150, 16.5
PrintDlg.CheckBoxes(SheetCount).Text = _
CurrentSheet.Name
TopPos = TopPos + 13
End If
Next i
' Move the OK and Cancel buttons
PrintDlg.Buttons.Left = 240
' Set dialog height, width, and caption
With PrintDlg.DialogFrame
.Height = Application.Max _
(68, PrintDlg.DialogFrame.Top + TopPos - 34)
.Width = 230
.Caption = "Select sheets to print"
End With
' Change tab order of OK and Cancel buttons
' so the 1st option button will have the focus
PrintDlg.Buttons("Button 2").BringToFront
PrintDlg.Buttons("Button 3").BringToFront
' Display the dialog box
CurrentSheet.Activate
Application.ScreenUpdating = True
If SheetCount <> 0 Then
If PrintDlg.Show Then
For Each cb In PrintDlg.CheckBoxes
If cb.Value = xlOn Then
Sheets(cb.Caption).Activate
ActiveSheet.PrintOut , (1)
' ActiveSheet.PrintPreview 'for debugging
End If
Next cb
End If
Else
MsgBox "All worksheets are empty."
End If
' Delete temporary dialog sheet (without a warning)
Application.DisplayAlerts = False
PrintDlg.Delete
' Reactivate original sheet
Application.Goto Reference:=Worksheets("Menu").Range("A1")
End Sub
I am happy with the code although I would like to know how to name some sheets to leave out of the list.
Can anyone help?
I know I will have to set them out in the loop creating the checkboxes for each sheet but dont know how.
Many Thanks
Rob