LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4
Default Print Macro : Object not set

Hello everyone,

Thanks in advance for reading my post. I'm very new to Excel VBA
programming and having some problem with a code snippet that prints
selected sheets.

I have a form with two list boxes. The left one shows the all the
worksheets and the user can add any or all of these sheets to the list
box on the right. Then I pass the list from the second list box to a
sub procedure taht prints. It prints the selected worksheets, but
everytime I get an error saying " Object variable or with block
variable not set". Here's my code...


Private Sub cmdPrint_Click()


'create an instanece of excel to initiate printing
Dim objXLSApp As Object
Dim wbkXLSBook As Workbook
Set objXLSApp = GetObject(, "Excel.Application")
Set wbkXLSBook = objXLSApp.ThisWorkbook

With wbkXLSBook

For i = 0 To lstPrintQue.ListCount - 1
wbkXLSBook.Sheets(lstPrintQue.List(i)).Activate
ActiveWindow.SelectedSheets.PrintOut Copies:=1, Collate:=True
Next i

End With

'release object
Set objXLSApp = Nothing

Unload Me


End Sub



I created an Excel appliocation object and then added the selected
worksheets to that application and then printed them out. This looks a
round about way of doing something as simple as printing a few sheets.
Is there a better way? If somebody code show me a code sample I'd
greatly appreciate it. Or, maybe some of you can suggest a few changes
to my existing code?

Again, I really appreciate the help.

Thanks!

A. Rahman
 
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I print an object in Excel 2007 MAF Excel Discussion (Misc queries) 2 April 4th 09 03:40 AM
Line appears - not border, not object, does not print - what is it Licardi Excel Discussion (Misc queries) 2 January 15th 08 06:51 PM
Print Word Object in Excel Mac Excel Discussion (Misc queries) 7 March 2nd 07 05:12 PM
Why does a pasted object in Excel sometimes print upside down? Mel Excel Discussion (Misc queries) 2 December 2nd 05 02:07 PM
Print more then one page in excel from a word object Alex Martinez Excel Worksheet Functions 0 October 14th 05 06:22 AM


All times are GMT +1. The time now is 09:48 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"