A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Help with Print Macro



 
 
Thread Tools Search this Thread Display Modes
  #11  
Old August 15th 06, 11:23 PM posted to microsoft.public.outlook.program_vba
[email protected]
external usenet poster
 
Posts: 7
Default Help with Print Macro

I added obj.Close and it causes an error.

Here is the marco I'm currently working with:

Public Sub PrintMail()
Dim obj As Object
Set obj = Application.ActiveExplorer.Selection(1)
obj.Display
DoEvents
obj.PrintOut
obj.Close
End Sub

This causes a "runtime error 449" which then launches me into the
debugger which has the obj.Close line selected.


Michael Bauer [MVP - Outlook] wrote:
Am 14 Aug 2006 11:25:20 -0700 schrieb :

Add an obj.Close please.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
--
www.VBOffice.net --


Thanks the DoEvents insert helped. Now the macro opens the email &
prints it.

To end the macro I'd like for it to close the email window. What can
be added to this macro at the end to close the email window after
printing.


Also, is it not OK to post in multiple groups? I've done this in the
past in hopes of reaching more professionals like yourselves.


Thanks for your help,
Daniel

Michael Bauer [MVP - Outlook] wrote:
Am Thu, 10 Aug 2006 21:54:21 -0700 schrieb Milly Staples [MVP - Outlook]:

Milly, nice to meet you! I didnīt realize that Dan asked in several

groups.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


Thanks for trimming the groups!

--
Milly Staples [MVP - Outlook]

Post all replies to the group to keep the discussion intact. All
unsolicited mail sent to my personal account will be deleted without
reading.

After furious head scratching, Michael Bauer [MVP - Outlook] asked:

| Am 10 Aug 2006 12:46:55 -0700 schrieb :
|
| Public Sub PrintMail()
| Dim obj as Object
| Set obj=Application.ActiveExplorer.Selection(1)
| obj.Display
| obj.Printout
| End Sub
|
|
|| Hello,
||
|| I recently installed internet explorer 7 beta 3 update to my system
|| and I'm having a problem printing emails from the preview pane.
|| However I can print the email if I open it (doulbe click) and then
|| print it.
||
|| Doesn't look like microsoft has a fix for this yet so I was hoping
|| someone can help me with a work around - create a macro that would
|| open an email (already selected), print it and then close the email.
|| Pretty simple, but outlook doesn't have a macro recorder so I have
|| no idea how to write this.
||
|| So can someone provide me with the code I need to do this. Again the
|| situation would be that I have the email already highlighted in the
|| preview plane and I'd like to have the marco open the email, print it
|| and then close it.
||
|| Thanks,
|| Dan


Ads
  #12  
Old August 16th 06, 07:29 AM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Help with Print Macro

Am 15 Aug 2006 14:23:17 -0700 schrieb :

The error description says whatīs to do: The close method expects an
argument.

Please place the cursor after "close" and press the spacebar. IntelliSense
then shows you whatīs expected.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
--
www.VBOffice.net --


I added obj.Close and it causes an error.

Here is the marco I'm currently working with:

Public Sub PrintMail()
Dim obj As Object
Set obj = Application.ActiveExplorer.Selection(1)
obj.Display
DoEvents
obj.PrintOut
obj.Close
End Sub

This causes a "runtime error 449" which then launches me into the
debugger which has the obj.Close line selected.


Michael Bauer [MVP - Outlook] wrote:
Am 14 Aug 2006 11:25:20 -0700 schrieb :

Add an obj.Close please.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
--
www.VBOffice.net --


Thanks the DoEvents insert helped. Now the macro opens the email &
prints it.

To end the macro I'd like for it to close the email window. What can
be added to this macro at the end to close the email window after
printing.


Also, is it not OK to post in multiple groups? I've done this in the
past in hopes of reaching more professionals like yourselves.


Thanks for your help,
Daniel

Michael Bauer [MVP - Outlook] wrote:
Am Thu, 10 Aug 2006 21:54:21 -0700 schrieb Milly Staples [MVP -

Outlook]:

Milly, nice to meet you! I didnīt realize that Dan asked in several

groups.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


Thanks for trimming the groups!

--
Milly Staples [MVP - Outlook]

Post all replies to the group to keep the discussion intact. All
unsolicited mail sent to my personal account will be deleted without
reading.

After furious head scratching, Michael Bauer [MVP - Outlook] asked:

| Am 10 Aug 2006 12:46:55 -0700 schrieb :
|
| Public Sub PrintMail()
| Dim obj as Object
| Set obj=Application.ActiveExplorer.Selection(1)
| obj.Display
| obj.Printout
| End Sub
|
|
|| Hello,
||
|| I recently installed internet explorer 7 beta 3 update to my system
|| and I'm having a problem printing emails from the preview pane.
|| However I can print the email if I open it (doulbe click) and then
|| print it.
||
|| Doesn't look like microsoft has a fix for this yet so I was hoping
|| someone can help me with a work around - create a macro that would
|| open an email (already selected), print it and then close the email.
|| Pretty simple, but outlook doesn't have a macro recorder so I have
|| no idea how to write this.
||
|| So can someone provide me with the code I need to do this. Again

the
|| situation would be that I have the email already highlighted in the
|| preview plane and I'd like to have the marco open the email, print

it
|| and then close it.
||
|| Thanks,
|| Dan

  #13  
Old August 16th 06, 08:44 PM posted to microsoft.public.outlook.program_vba
[email protected]
external usenet poster
 
Posts: 7
Default Help with Print Macro

Thanks for everyone's help. in the end I just added a "PrintOut" after
the obj.Close to the end and now it works great.

Public Sub PrintMail()
Dim obj As Object
Set obj = Application.ActiveExplorer.Selection(1)
obj.Display
DoEvents
obj.PrintOut
obj.Close PrintOut
End Sub


Thanks - Dan

Michael Bauer [MVP - Outlook] wrote:
Am 15 Aug 2006 14:23:17 -0700 schrieb :

The error description says whatīs to do: The close method expects an
argument.

Please place the cursor after "close" and press the spacebar. IntelliSense
then shows you whatīs expected.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
--
www.VBOffice.net --


I added obj.Close and it causes an error.

Here is the marco I'm currently working with:

Public Sub PrintMail()
Dim obj As Object
Set obj = Application.ActiveExplorer.Selection(1)
obj.Display
DoEvents
obj.PrintOut
obj.Close
End Sub

This causes a "runtime error 449" which then launches me into the
debugger which has the obj.Close line selected.


Michael Bauer [MVP - Outlook] wrote:
Am 14 Aug 2006 11:25:20 -0700 schrieb :

Add an obj.Close please.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
--
www.VBOffice.net --


Thanks the DoEvents insert helped. Now the macro opens the email &
prints it.

To end the macro I'd like for it to close the email window. What can
be added to this macro at the end to close the email window after
printing.


Also, is it not OK to post in multiple groups? I've done this in the
past in hopes of reaching more professionals like yourselves.


Thanks for your help,
Daniel

Michael Bauer [MVP - Outlook] wrote:
Am Thu, 10 Aug 2006 21:54:21 -0700 schrieb Milly Staples [MVP -

Outlook]:

Milly, nice to meet you! I didnīt realize that Dan asked in several
groups.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


Thanks for trimming the groups!

--
Milly Staples [MVP - Outlook]

Post all replies to the group to keep the discussion intact. All
unsolicited mail sent to my personal account will be deleted without
reading.

After furious head scratching, Michael Bauer [MVP - Outlook] asked:

| Am 10 Aug 2006 12:46:55 -0700 schrieb :
|
| Public Sub PrintMail()
| Dim obj as Object
| Set obj=Application.ActiveExplorer.Selection(1)
| obj.Display
| obj.Printout
| End Sub
|
|
|| Hello,
||
|| I recently installed internet explorer 7 beta 3 update to my system
|| and I'm having a problem printing emails from the preview pane.
|| However I can print the email if I open it (doulbe click) and then
|| print it.
||
|| Doesn't look like microsoft has a fix for this yet so I was hoping
|| someone can help me with a work around - create a macro that would
|| open an email (already selected), print it and then close the email.
|| Pretty simple, but outlook doesn't have a macro recorder so I have
|| no idea how to write this.
||
|| So can someone provide me with the code I need to do this. Again

the
|| situation would be that I have the email already highlighted in the
|| preview plane and I'd like to have the marco open the email, print

it
|| and then close it.
||
|| Thanks,
|| Dan


  #14  
Old August 17th 06, 07:59 AM posted to microsoft.public.outlook.program_vba
Michael Bauer [MVP - Outlook]
external usenet poster
 
Posts: 1,885
Default Help with Print Macro

Am 16 Aug 2006 11:44:07 -0700 schrieb :

If that works then just by chance. What is "PrintOut" for a value?

The available enums a
- olDiscard
- olPromptForSave
- olSave

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
--
www.VBOffice.net --


Thanks for everyone's help. in the end I just added a "PrintOut" after
the obj.Close to the end and now it works great.

Public Sub PrintMail()
Dim obj As Object
Set obj = Application.ActiveExplorer.Selection(1)
obj.Display
DoEvents
obj.PrintOut
obj.Close PrintOut
End Sub


Thanks - Dan

Michael Bauer [MVP - Outlook] wrote:
Am 15 Aug 2006 14:23:17 -0700 schrieb :

The error description says whatīs to do: The close method expects an
argument.

Please place the cursor after "close" and press the spacebar.

IntelliSense
then shows you whatīs expected.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
--
www.VBOffice.net --


I added obj.Close and it causes an error.

Here is the marco I'm currently working with:

Public Sub PrintMail()
Dim obj As Object
Set obj = Application.ActiveExplorer.Selection(1)
obj.Display
DoEvents
obj.PrintOut
obj.Close
End Sub

This causes a "runtime error 449" which then launches me into the
debugger which has the obj.Close line selected.


Michael Bauer [MVP - Outlook] wrote:
Am 14 Aug 2006 11:25:20 -0700 schrieb :

Add an obj.Close please.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
--
www.VBOffice.net --


Thanks the DoEvents insert helped. Now the macro opens the email &
prints it.

To end the macro I'd like for it to close the email window. What can
be added to this macro at the end to close the email window after
printing.


Also, is it not OK to post in multiple groups? I've done this in the
past in hopes of reaching more professionals like yourselves.


Thanks for your help,
Daniel

Michael Bauer [MVP - Outlook] wrote:
Am Thu, 10 Aug 2006 21:54:21 -0700 schrieb Milly Staples [MVP -

Outlook]:

Milly, nice to meet you! I didnīt realize that Dan asked in several
groups.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.VBOffice.net --


Thanks for trimming the groups!

--
Milly Staples [MVP - Outlook]

Post all replies to the group to keep the discussion intact. All
unsolicited mail sent to my personal account will be deleted without
reading.

After furious head scratching, Michael Bauer [MVP - Outlook] asked:

| Am 10 Aug 2006 12:46:55 -0700 schrieb :
|
| Public Sub PrintMail()
| Dim obj as Object
| Set obj=Application.ActiveExplorer.Selection(1)
| obj.Display
| obj.Printout
| End Sub
|
|
|| Hello,
||
|| I recently installed internet explorer 7 beta 3 update to my

system
|| and I'm having a problem printing emails from the preview pane.
|| However I can print the email if I open it (doulbe click) and then
|| print it.
||
|| Doesn't look like microsoft has a fix for this yet so I was hoping
|| someone can help me with a work around - create a macro that would
|| open an email (already selected), print it and then close the

email.
|| Pretty simple, but outlook doesn't have a macro recorder so I have
|| no idea how to write this.
||
|| So can someone provide me with the code I need to do this. Again

the
|| situation would be that I have the email already highlighted in

the
|| preview plane and I'd like to have the marco open the email, print

it
|| and then close it.
||
|| Thanks,
|| Dan

 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Help with Print Macro [email protected] Outlook - General Queries 1 August 11th 06 06:32 AM
vba macro to print email and attachments outlook 2000 Dan over in IT Outlook and VBA 2 June 7th 06 09:08 PM
D-Link DP-301U print server will not print from Outlook, OE, or Firefox KLS Outlook - General Queries 2 March 22nd 06 12:52 PM
D-Link DP-301U print server will not print from Outlook, OE, or Firefox KLS Outlook Express 4 March 22nd 06 04:14 AM
Macro to open, retrieve contents, print, and loop through process Michelle Marie Outlook and VBA 2 February 24th 06 10:39 AM


All times are GMT +1. The time now is 04:50 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright Đ2004-2025 Outlook Banter.
The comments are property of their posters.