B bnadler May 26, 2009 #1 I am just learning VB6 and I do not see how data is sent to a printer. There is not a printer method that I can find
I am just learning VB6 and I do not see how data is sent to a printer. There is not a printer method that I can find
B bnadler May 27, 2009 #3 I have tried using Printer.Print but I cannot find the Printer object anywhere. It isn't even listed in the help section.
I have tried using Printer.Print but I cannot find the Printer object anywhere. It isn't even listed in the help section.
J Joel May 27, 2009 #4 Microsfot documentation is really bad. they don't tell you what type object you are suppose top use. In this case the object is the worksheet and you can't change printers. The printer is the default printer on you PC. activesheet.printout
Microsfot documentation is really bad. they don't tell you what type object you are suppose top use. In this case the object is the worksheet and you can't change printers. The printer is the default printer on you PC. activesheet.printout
D Dave Peterson May 27, 2009 #5 You may want to ask in a forum dedicated to VB--not excel. If you really meant you wanted to print something in excel's vba: worksheets("Sheet999").printout 'preview:=true or worksheets("sheet999").range("x1:Z9").printout 'preview:=true
You may want to ask in a forum dedicated to VB--not excel. If you really meant you wanted to print something in excel's vba: worksheets("Sheet999").printout 'preview:=true or worksheets("sheet999").range("x1:Z9").printout 'preview:=true