Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Excel2003 ... I have a Worksheet with several Macro buttons (objects?)
created from "Forms" Tool bar ... They all work fine ... Above said ... How do I set Excel to "Print" these object buttons when I print the Worksheet. Thanks ... Kha |
#2
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Rightclick on each button
choose Format Control|Properties tab|Check Print Object Ken wrote: Excel2003 ... I have a Worksheet with several Macro buttons (objects?) created from "Forms" Tool bar ... They all work fine ... Above said ... How do I set Excel to "Print" these object buttons when I print the Worksheet. Thanks ... Kha -- Dave Peterson |
#3
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
Dave ... (Good morning)
To many "buttons" to many WorkSheets ... I am trying to print a sample of Worksheets from various files with "buttons displayed" so Users will have idea of what will be required of them ... Above said ... is there an easier way to print all "Form" buttons on a Worksheet ... or must I select each button & select "Print object" as stated in your original reply? Thanks ... Kha "Dave Peterson" wrote: Rightclick on each button choose Format Control|Properties tab|Check Print Object Ken wrote: Excel2003 ... I have a Worksheet with several Macro buttons (objects?) created from "Forms" Tool bar ... They all work fine ... Above said ... How do I set Excel to "Print" these object buttons when I print the Worksheet. Thanks ... Kha -- Dave Peterson |
#4
![]()
Posted to microsoft.public.excel.misc
|
|||
|
|||
![]()
You could use a macro:
Option Explicit Sub testme() Dim BTN As Button Dim wks As Worksheet For Each wks In ActiveWorkbook.Worksheets For Each BTN In wks.Buttons BTN.PrintObject = True Next BTN Next wks End Sub If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm Ken wrote: Dave ... (Good morning) To many "buttons" to many WorkSheets ... I am trying to print a sample of Worksheets from various files with "buttons displayed" so Users will have idea of what will be required of them ... Above said ... is there an easier way to print all "Form" buttons on a Worksheet ... or must I select each button & select "Print object" as stated in your original reply? Thanks ... Kha "Dave Peterson" wrote: Rightclick on each button choose Format Control|Properties tab|Check Print Object Ken wrote: Excel2003 ... I have a Worksheet with several Macro buttons (objects?) created from "Forms" Tool bar ... They all work fine ... Above said ... How do I set Excel to "Print" these object buttons when I print the Worksheet. Thanks ... Kha -- Dave Peterson -- Dave Peterson |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Shortcut key for "Paste Options" and "Error Checking" buttons? | Excel Discussion (Misc queries) | |||
How do I create "push buttons" in Excel? | Excel Worksheet Functions | |||
HELP on "left","right","find","len","substitute" functions | Excel Discussion (Misc queries) | |||
Count occurences of "1"/"0" (or"TRUE"/"FALSE") in a row w. conditions in the next | New Users to Excel | |||
Print IF return "OK" or "NOT OK" in different colors | Excel Discussion (Misc queries) |