Home |
Search |
Today's Posts |
|
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Is there a simple way to have a form show all available printers in a listbox, and a user to simply
select one to print to it ? |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I believe I used
Application.Dialogs(xlDialogPrinterSetup).Show in a previous project. "Corey" wrote: Is there a simple way to have a form show all available printers in a listbox, and a user to simply select one to print to it ? |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
just use something like this, it's much easier
dim bOK as string bOK = Application.Dialogs(xlDialogPrinterSetup).Show 'choose the printer If bOK = False Then exit sub -- Gary "Corey" wrote in message ... Is there a simple way to have a form show all available printers in a listbox, and a user to simply select one to print to it ? |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
perfect thanks
"Gary Keramidas" <GKeramidasATmsn.com wrote in message ... just use something like this, it's much easier dim bOK as string bOK = Application.Dialogs(xlDialogPrinterSetup).Show 'choose the printer If bOK = False Then exit sub -- Gary "Corey" wrote in message ... Is there a simple way to have a form show all available printers in a listbox, and a user to simply select one to print to it ? |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Listbox to display ALL Available Printers to User on a Userfrom | Excel Programming | |||
Printers | Excel Programming | |||
Printers & LPT | Excel Programming | |||
listbox.value not equal to listbox.list(listbox.listindex,0) | Excel Programming | |||
Enumerating Printers | Excel Programming |