Forum: Outlook - Using Forms
February 27th 06, 12:36 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 24
Views: 1,512
Help for a novice
I've just seen te the picture & fax viwere is loaded by
rundll32.exe C:\WINDOWS\system32\shimgvw.dll,ImageView_Fullscreen %1
is there an easy way to close this event by VBA code
On Fri, 24 Feb...
|
Forum: Outlook - Using Forms
February 27th 06, 12:26 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 24
Views: 1,512
Help for a novice
Thanks works really well.
I would like to delete the saved attachments files when the user
closes the email
Is there anyay to sence when the user closes the email window so I can
delete the...
|
Forum: Outlook - Using Forms
February 25th 06, 12:46 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 24
Views: 1,512
Help for a novice
Sorry I don't follow
If I double click on the attachment it opens without saving it to disk
therefore why can't it just be opend with code
On Fri, 24 Feb 2006 18:24:12 -0500, "Sue Mosher...
|
Forum: Outlook - Using Forms
February 25th 06, 12:15 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 24
Views: 1,512
Help for a novice
I'm trying the following
Set myItem = Application.ActiveInspector.CurrentItem
Set myAttachments = myItem.Attachments
MsgBox myAttachments.Item(1).DisplayName
This displays the...
|
Forum: Outlook - Using Forms
February 24th 06, 10:24 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 24
Views: 1,512
Help for a novice
In desperation I did a machine cleanup including the following
removed ALL vba code from outlook
ran Office repair
ran Scanpst ... errors found
deleted all caches and temps ... 134Mb removed
ran...
|
Forum: Outlook - Using Forms
February 23rd 06, 11:58 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 24
Views: 1,512
Help for a novice
Yes I tried your code, but it works on open mail (read), as well as
reply, replyall, & forward
If I use it as is, the attachments will open everytime the user
selects reply, replyall or forward...
|
Forum: Outlook - Using Forms
February 23rd 06, 05:10 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 24
Views: 1,512
Help for a novice
OK, lets take a differnent approach
I've seen "Reply event"
Is there any way in VBA to see if theis event has happened.
What I read it as if the user selects reply, then i should be able to
test...
|
Forum: Outlook - Using Forms
February 23rd 06, 04:19 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 24
Views: 1,512
Help for a novice
I tried
f myItem.Class = olMail Then
If myItem.Sent = True Then
MsgBox "Test"
' it's not a newly created item
' put your code to work with myItem here
End...
|
Forum: Outlook - Using Forms
February 21st 06, 11:33 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 24
Views: 1,512
Help for a novice
Partly my own fault opening mi mouth and saying it shouldn't be that
difficult to do. .... learnt my lesson
anyway.
do you have some code that explains how to test for the sent property
I've...
|
Forum: Outlook - Using Forms
February 21st 06, 08:18 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 24
Views: 1,512
Help for a novice
I have no experience in building COMs add-ins.
I'm not a programmer and had this landed on me.
On Tue, 21 Feb 2006 13:39:30 -0500, "Sue Mosher [MVP-Outlook]"
wrote:
I...
|
Forum: Outlook - Using Forms
February 21st 06, 06:58 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 24
Views: 1,512
Help for a novice
The code that you suggested, when does it run ....
I mean does the user have to do something or does this code run when a
new mail comes in.
The users here don't want the attachments for every mail...
|
Forum: Outlook - Using Forms
February 21st 06, 05:07 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 24
Views: 1,512
Help for a novice
I have users that get faxes as email attachments.
Sometimes as many as 6 or 7 per email, as GIF attachments.
Outlook 2003 doesn't allow you to open multiple attachments at 1 time.
I'm trying to...
|
Forum: Outlook - Using Forms
February 21st 06, 11:44 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 24
Views: 1,512
Help for a novice
I've read the help on reply event , but can't get it to work
I've tried placing this everywhere but I can't get it to run when the
user sends a reply.
I'm trying to find the right place to set the...
|
Forum: Outlook - Using Forms
February 13th 06, 10:09 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 774
Trap reply event
I'm trying to find a way to trigger a macro on mail open only,
I don't want the macro to run on "reply", or forward events.
Can anyone suggest a way of testing for these action.
|
Forum: Outlook - Using Forms
February 13th 06, 08:52 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 443
can't find me on the network
What is the error message that you get
On Sun, 12 Feb 2006 08:37:27 -0800, "henry"
wrote:
When i try to get on outlook. when i hit send&receive. The send is ok...
|
Forum: Outlook - Using Forms
February 12th 06, 01:27 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 1
Views: 774
Trap reply event
I'm looking for a way to trap the reply event in VBA
Waht i would like if possible
If reply_event then 'if the event is a reply event
run code A
Else ' run code for all other events
run...
|
Forum: Outlook - Using Forms
February 7th 06, 10:01 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 15
Views: 1,900
Running a macro
On Mon, 6 Feb 2006 16:47:44 -0500, "Sue Mosher [MVP-Outlook]"
wrote:
You might be confusing the MailItem.Open method and the MailItem.Open event. If you declare a MailItem...
|
Forum: Outlook - Using Forms
February 6th 06, 10:07 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 15
Views: 1,900
Running a macro
On Mon, 6 Feb 2006 14:58:35 -0500, "Sue Mosher [MVP-Outlook]"
wrote:
That's why I suggested using either the Inspector.Activate event or the MailItem.Open event, where your...
|
Forum: Outlook - Using Forms
February 4th 06, 09:31 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 15
Views: 1,900
Running a macro
On Fri, 3 Feb 2006 18:28:13 -0500, "Sue Mosher [MVP-Outlook]"
wrote:
What errror? What's the mail environment? Do you see any different behavior with different format...
|
Forum: Outlook - Using Forms
February 3rd 06, 10:58 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 15
Views: 1,900
Running a macro
On Fri, 3 Feb 2006 12:03:49 -0500, "Sue Mosher [MVP-Outlook]"
wrote:
I guess it might help if you described exactly what you have in mind by "the email is fully opened" and...
|
Forum: Outlook - Using Forms
February 3rd 06, 05:45 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 15
Views: 1,900
Running a macro
On Fri, 3 Feb 2006 08:39:16 -0500, "Sue Mosher [MVP-Outlook]"
wrote:
Tried what. It's impossible to know what message you're responding to. Please quote earlier messages....
|
Forum: Outlook - Using Forms
February 3rd 06, 06:44 AM Posted to microsoft.public.outlook.program_forms
|
Replies: 15
Views: 1,900
Running a macro
I tried this, but found that the code needs to complete then the
email opens. This gives me errors as i can't do anything with the
attachments at this stage.
What i Need is something that will run...
|
Forum: Outlook - Using Forms
February 2nd 06, 12:42 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 15
Views: 1,900
Running a macro
Thanks I tried it but I need to let the email open completly before it
runs the macro.
I'm trying to open all attachments automatically when the email is
opened. Your solution acts too early.
How...
|
Forum: Outlook - Using Forms
February 1st 06, 04:54 PM Posted to microsoft.public.outlook.program_forms
|
Replies: 15
Views: 1,900
Running a macro
How do I get a macro to run automatically every time an email is
opened
|