vba timing

Status
Not open for further replies.
B

bobh

Hi,

On a daily basis I recieve emails which have spreadsheet attachments,

these emails I want to move to another Outlook folder and save the

attachment to a folder on my 'c:' disk drive.

I have vba code to save the attachment and I created a rule for when

the 'subject' line contains specific text to move it to the other

Outlook folder and run a vba sub which calls another sub which does

the actual work, see below(ps: I got this code from someplace on the

web).

I believe this code/process will work but I'm having one issue which

is

the rule says

Apply this rule after the message arrives

with testtry in the subject

and on this machine only

move it to the MyTestFolder folder

and run Project1.TestSave

So, when an email is recieved in my inbox which has 'testtry' in the

subject line it moves it to the 'MyTestFolder' but before it completes

that move it start to run the vba sub 'TestSave' which passes the

values to the sub SaveEmailAttachmentsToFolder and starts to run it

before the rule has finished moving the email to the folder so the sub

SaveEmailAttachmentsToFolder does not find any emails in MyTestFolder

so I end up getting the "MsgBox "There are no messages in this folder

" message from the sub.

How do I make the rule finish moving the email before it starts

running the script???

Public Sub TestSave(msg As MailItem)

'Arg 1 = Folder name in your Inbox

'Arg 2 = File extension, "" is every file

'Arg 3 = Save folder, "C:\Outlook\MyFiles" or ""

'If you use "" it will create a date/time stamped folder for you in

the "My Documents" folder.

'Note: If you use this "C:\Outlook\MyFiles" the folder must exist

SaveEmailAttachmentsToFolder "MyTestFolder", "xls", "C:\BH-Outlook

\TestSave"

End Sub

Public Sub SaveEmailAttachmentsToFolder(OutlookFolderInInbox As

String, ExtString As String, DestFolder As String)

On Error GoTo ThisMacro_err

'Do not change code in the macro below

Dim ns As NameSpace

Dim Inbox As MAPIFolder

Dim SubFolder As MAPIFolder

Dim Item As Object

Dim Atmt As Attachment

Dim FileName As String

Dim MyDocPath As String

Dim I As Integer

Dim wsh As Object

Dim fs As Object

Set ns = GetNamespace("MAPI")

Set Inbox = ns.GetDefaultFolder(olFolderInbox)

Set SubFolder = Inbox.Folders(OutlookFolderInInbox)

I = 0

' Check subfolder for messages and exit of none found

If SubFolder.Items.Count = 0 Then

MsgBox "There are no messages in this folder : " &

OutlookFolderInInbox, vbInformation, "Nothing Found"

Set SubFolder = Nothing

Set Inbox = Nothing

Set ns = Nothing

Exit Sub

End If

'Create DestFolder if DestFolder = ""

If DestFolder = "" Then

Set wsh = CreateObject("WScript.Shell")

Set fs = CreateObject("Scripting.FileSystemObject")

MyDocPath = wsh.SpecialFolders.Item("mydocuments")

DestFolder = MyDocPath & "\" & Format(Now, "dd-mmm-yyyy hh-mm-

ss")

If Not fs.FolderExists(DestFolder) Then

fs.CreateFolder DestFolder

End If

End If

If Right(DestFolder, 1) <> "\" Then

DestFolder = DestFolder & "\"

End If

' Check each message for attachments and extensions

For Each Item In SubFolder.Items

For Each Atmt In Item.Attachments

If LCase(Right(Atmt.FileName, Len(ExtString))) =

LCase(ExtString) Then

FileName = DestFolder & Item.SenderName & " " &

Atmt.FileName

Atmt.SaveAsFile FileName

I = I + 1

End If

Next Atmt

Next Item

' Show this message when Finished

If I > 0 Then

MsgBox "You can find the files here : " _

& DestFolder, vbInformation, "Finished!"

Else

MsgBox "No attached files in your mail.", vbInformation,

"Finished!"

End If

' Clear memory

ThisMacro_exit:

Set SubFolder = Nothing

Set Inbox = Nothing

Set ns = Nothing

Set fs = Nothing

Set wsh = Nothing

Exit Sub

' Error information

ThisMacro_err:

MsgBox "An unexpected error has occurred." _

& vbCrLf & "Please note and report the following

information." _

& vbCrLf & "Macro Name: SaveEmailAttachmentsToFolder" _

& vbCrLf & "Error Number: " & Err.Number _

& vbCrLf & "Error Description: " & Err.Description _

, vbCritical, "Error!"

Resume ThisMacro_exit

End Sub
 
In TestSave you already have a reference to the email (see the msg

variable). Pass that to the SaveEmailAttachmentsToFolder procedure, and

handle only that one item. Then you don't need to loop through the entire

inbox.

Best regards

Michael Bauer

Am Mon, 17 May 2010 11:41:41 -0700 (PDT) schrieb bobh:


> Hi,

> On a daily basis I recieve emails which have spreadsheet attachments,
> these emails I want to move to another Outlook folder and save the
> attachment to a folder on my 'c:' disk drive.

> I have vba code to save the attachment and I created a rule for when
> the 'subject' line contains specific text to move it to the other
> Outlook folder and run a vba sub which calls another sub which does
> the actual work, see below(ps: I got this code from someplace on the
> web).
> I believe this code/process will work but I'm having one issue which
> is

> the rule says
> Apply this rule after the message arrives
> with testtry in the subject
> and on this machine only
> move it to the MyTestFolder folder
> and run Project1.TestSave

> So, when an email is recieved in my inbox which has 'testtry' in the
> subject line it moves it to the 'MyTestFolder' but before it completes
> that move it start to run the vba sub 'TestSave' which passes the
> values to the sub SaveEmailAttachmentsToFolder and starts to run it
> before the rule has finished moving the email to the folder so the sub
> SaveEmailAttachmentsToFolder does not find any emails in MyTestFolder
> so I end up getting the "MsgBox "There are no messages in this folder
> " message from the sub.

> How do I make the rule finish moving the email before it starts
> running the script???

> Public Sub TestSave(msg As MailItem)
> 'Arg 1 = Folder name in your Inbox
> 'Arg 2 = File extension, "" is every file
> 'Arg 3 = Save folder, "C:\Outlook\MyFiles" or ""
> 'If you use "" it will create a date/time stamped folder for you in
> the "My Documents" folder.
> 'Note: If you use this "C:\Outlook\MyFiles" the folder must exist

> SaveEmailAttachmentsToFolder "MyTestFolder", "xls", "C:\BH-Outlook
> \TestSave"

> End Sub

> Public Sub SaveEmailAttachmentsToFolder(OutlookFolderInInbox As
> String, ExtString As String, DestFolder As String)
> On Error GoTo ThisMacro_err
> 'Do not change code in the macro below

> Dim ns As NameSpace
> Dim Inbox As MAPIFolder
> Dim SubFolder As MAPIFolder
> Dim Item As Object
> Dim Atmt As Attachment
> Dim FileName As String
> Dim MyDocPath As String
> Dim I As Integer
> Dim wsh As Object
> Dim fs As Object

> Set ns = GetNamespace("MAPI")
> Set Inbox = ns.GetDefaultFolder(olFolderInbox)
> Set SubFolder = Inbox.Folders(OutlookFolderInInbox)

> I = 0
> ' Check subfolder for messages and exit of none found
> If SubFolder.Items.Count = 0 Then
> MsgBox "There are no messages in this folder : " &
> OutlookFolderInInbox, vbInformation, "Nothing Found"
> Set SubFolder = Nothing
> Set Inbox = Nothing
> Set ns = Nothing
> Exit Sub
> End If

> 'Create DestFolder if DestFolder = ""
> If DestFolder = "" Then
> Set wsh = CreateObject("WScript.Shell")
> Set fs = CreateObject("Scripting.FileSystemObject")
> MyDocPath = wsh.SpecialFolders.Item("mydocuments")
> DestFolder = MyDocPath & "\" & Format(Now, "dd-mmm-yyyy hh-mm-
> ss")
> If Not fs.FolderExists(DestFolder) Then
> fs.CreateFolder DestFolder
> End If
> End If

> If Right(DestFolder, 1) <> "\" Then
> DestFolder = DestFolder & "\"
> End If

> ' Check each message for attachments and extensions
> For Each Item In SubFolder.Items
> For Each Atmt In Item.Attachments
> If LCase(Right(Atmt.FileName, Len(ExtString))) =
> LCase(ExtString) Then
> FileName = DestFolder & Item.SenderName & " " &
> Atmt.FileName
> Atmt.SaveAsFile FileName
> I = I + 1
> End If
> Next Atmt
> Next Item

> ' Show this message when Finished
> If I > 0 Then
> MsgBox "You can find the files here : " _
> & DestFolder, vbInformation, "Finished!"
> Else
> MsgBox "No attached files in your mail.", vbInformation,
> "Finished!"
> End If

> ' Clear memory
> ThisMacro_exit:
> Set SubFolder = Nothing
> Set Inbox = Nothing
> Set ns = Nothing
> Set fs = Nothing
> Set wsh = Nothing
> Exit Sub

> ' Error information
> ThisMacro_err:
> MsgBox "An unexpected error has occurred." _
> & vbCrLf & "Please note and report the following
> information." _
> & vbCrLf & "Macro Name: SaveEmailAttachmentsToFolder" _
> & vbCrLf & "Error Number: " & Err.Number _
> & vbCrLf & "Error Description: " & Err.Description _
> , vbCritical, "Error!"
> Resume ThisMacro_exit

> End Sub
 
On May 18, 2:43 am, "Michael Bauer " <m...@mvps.org
wrote:
> In TestSave you already have a reference to the email (see the msg
> variable). Pass that to the SaveEmailAttachmentsToFolder procedure, and
> handle only that one item. Then you don't need to loop through the entire
> inbox.

> > Best regards
> Michael Bauer
>   Category Manager -

>   SAM - The Sending Account Manager:
>  

> Am Mon, 17 May 2010 11:41:41 -0700 (PDT) schrieb bobh:

>
> > Hi,

>
> > On a daily basis I recieve emails which have spreadsheet attachments,
> > these emails I want to move to another Outlook folder and save the
> > attachment to a folder on my 'c:' disk drive.

>
> > I have vba code to save the attachment and I created a rule for when
> > the 'subject' line contains specific text to move it to the other
> > Outlook folder and run a vba sub which calls another sub which does
> > the actual work, see below(ps: I got this code from someplace on the
> > web).
> > I believe this code/process will work but I'm having one issue which
> > is

>
> > the rule says
> > Apply this rule after the message arrives
> > with testtry in the subject
> > and on this machine only
> > move it to the MyTestFolder folder
> > and run Project1.TestSave

>
> > So, when an email is recieved in my inbox which has 'testtry' in the
> > subject line it moves it to the 'MyTestFolder' but before it completes
> > that move it start to run the vba sub 'TestSave' which passes the
> > values to the sub SaveEmailAttachmentsToFolder and starts to run it
> > before the rule has finished moving the email to the folder so the sub
> > SaveEmailAttachmentsToFolder does not find any emails in MyTestFolder
> > so I end up getting the "MsgBox "There are no messages in this folder
> > " message from the sub.

>
> > How do I make the rule finish moving the email before it starts
> > running the script???

>
> > Public Sub TestSave(msg As MailItem)
> > 'Arg 1 = Folder name in your Inbox
> > 'Arg 2 = File extension, "" is every file
> > 'Arg 3 = Save folder, "C:\Outlook\MyFiles" or ""
> > 'If you use "" it will create a date/time stamped folder for you in
> > the "My Documents" folder.
> > 'Note: If you use this "C:\Outlook\MyFiles" the folder must exist

>
> >     SaveEmailAttachmentsToFolder "MyTestFolder", "xls", "C:\BH-Outlook
> > \TestSave"

>
> > End Sub

>
> > Public Sub SaveEmailAttachmentsToFolder(OutlookFolderInInbox As
> > String, ExtString As String, DestFolder As String)
> > On Error GoTo ThisMacro_err
> > 'Do not change code in the macro below

>
> >     Dim ns As NameSpace
> >     Dim Inbox As MAPIFolder
> >     Dim SubFolder As MAPIFolder
> >     Dim Item As Object
> >     Dim Atmt As Attachment
> >     Dim FileName As String
> >     Dim MyDocPath As String
> >     Dim I As Integer
> >     Dim wsh As Object
> >     Dim fs As Object

>
> >     Set ns = GetNamespace("MAPI")
> >     Set Inbox = ns.GetDefaultFolder(olFolderInbox)
> >     Set SubFolder = Inbox.Folders(OutlookFolderInInbox)

>
> >     I = 0
> > ' Check subfolder for messages and exit of none found
> >     If SubFolder.Items.Count = 0 Then
> >         MsgBox "There are no messages in this folder : " &
> > OutlookFolderInInbox, vbInformation, "Nothing Found"
> >         Set SubFolder = Nothing
> >         Set Inbox = Nothing
> >         Set ns = Nothing
> >         Exit Sub
> >     End If

>
> > 'Create DestFolder if DestFolder = ""
> >     If DestFolder = "" Then
> >         Set wsh = CreateObject("WScript.Shell")
> >         Set fs = CreateObject("Scripting.FileSystemObject")
> >         MyDocPath = wsh.SpecialFolders.Item("mydocuments")
> >         DestFolder = MyDocPath & "\" & Format(Now, "dd-mmm-yyyy hh-mm-
> > ss")
> >         If Not fs.FolderExists(DestFolder) Then
> >             fs.CreateFolder DestFolder
> >         End If
> >     End If

>
> >     If Right(DestFolder, 1) <> "\" Then
> >         DestFolder = DestFolder & "\"
> >     End If

>
> > ' Check each message for attachments and extensions
> >     For Each Item In SubFolder.Items
> >         For Each Atmt In Item.Attachments
> >             If LCase(Right(Atmt.FileName, Len(ExtString))) =
> > LCase(ExtString) Then
> >                 FileName = DestFolder & Item.SenderName & " " &
> > Atmt.FileName
> >                 Atmt.SaveAsFile FileName
> >                 I = I + 1
> >             End If
> >         Next Atmt
> >     Next Item

>
> > ' Show this message when Finished
> >     If I > 0 Then
> >         MsgBox "You can find the files here : " _
> >              & DestFolder, vbInformation, "Finished!"
> >     Else
> >         MsgBox "No attached files in your mail.", vbInformation,
> > "Finished!"
> >     End If

>
> > ' Clear memory
> > ThisMacro_exit:
> >     Set SubFolder = Nothing
> >     Set Inbox = Nothing
> >     Set ns = Nothing
> >     Set fs = Nothing
> >     Set wsh = Nothing
> >     Exit Sub

>
> > ' Error information
> > ThisMacro_err:
> >     MsgBox "An unexpected error has occurred." _
> >          & vbCrLf & "Please note and report the following
> > information." _
> >          & vbCrLf & "Macro Name: SaveEmailAttachmentsToFolder" _
> >          & vbCrLf & "Error Number: " & Err.Number _
> >          & vbCrLf & "Error Description: " & Err.Description _
> >          , vbCritical, "Error!"
> >     Resume ThisMacro_exit

>
> > End Sub-




I assume you mean here and unfortunetly I don't know how to do that. I

don't really know Outlook vba. What would the vba code be to select

and check the "msg as Mailitem" before moving it the the subfloder?

' Check each message for attachments and extensions

For Each Item In SubFolder.Items

For Each Atmt In Item.Attachments

If LCase(Right(Atmt.FileName, Len(ExtString))) =

LCase(ExtString) Then

FileName = DestFolder & Item.SenderName & " " &

Atmt.FileName

Atmt.SaveAsFile FileName

I = I + 1

End If

Next Atmt

Next Item
 
In this function replace

Public Sub SaveEmailAttachmentsToFolder(OutlookFolderInInbox As

String, ExtString As String, DestFolder As String)

by

Public Sub SaveEmailAttachmentsToFolder(Item as MailItem, ExtString As

String, DestFolder As String)

and remove the outer loop, the one through the SubFolder.Items collection.

Best regards

Michael Bauer

Am Wed, 19 May 2010 09:31:37 -0700 (PDT) schrieb bobh:


> On May 18, 2:43 am, "Michael Bauer " <m...@mvps.org
> wrote:
> > In TestSave you already have a reference to the email (see the msg
> > variable). Pass that to the SaveEmailAttachmentsToFolder procedure, and
> > handle only that one item. Then you don't need to loop through the entire
> > inbox.
>

>> > > Best regards
> > Michael Bauer
> >   Category Manager -

> >   SAM - The Sending Account Manager:
> >  

>
>> Am Mon, 17 May 2010 11:41:41 -0700 (PDT) schrieb bobh:
>

>
>>
> >> Hi,

> >
> >> On a daily basis I recieve emails which have spreadsheet attachments,
> >> these emails I want to move to another Outlook folder and save the
> >> attachment to a folder on my 'c:' disk drive.

> >
> >> I have vba code to save the attachment and I created a rule for when
> >> the 'subject' line contains specific text to move it to the other
> >> Outlook folder and run a vba sub which calls another sub which does
> >> the actual work, see below(ps: I got this code from someplace on the
> >> web).
> >> I believe this code/process will work but I'm having one issue which
> >> is

> >
> >> the rule says
> >> Apply this rule after the message arrives
> >> with testtry in the subject
> >> and on this machine only
> >> move it to the MyTestFolder folder
> >> and run Project1.TestSave

> >
> >> So, when an email is recieved in my inbox which has 'testtry' in the
> >> subject line it moves it to the 'MyTestFolder' but before it completes
> >> that move it start to run the vba sub 'TestSave' which passes the
> >> values to the sub SaveEmailAttachmentsToFolder and starts to run it
> >> before the rule has finished moving the email to the folder so the sub
> >> SaveEmailAttachmentsToFolder does not find any emails in MyTestFolder
> >> so I end up getting the "MsgBox "There are no messages in this folder
> >> " message from the sub.

> >
> >> How do I make the rule finish moving the email before it starts
> >> running the script???

> >
> >> Public Sub TestSave(msg As MailItem)
> >> 'Arg 1 = Folder name in your Inbox
> >> 'Arg 2 = File extension, "" is every file
> >> 'Arg 3 = Save folder, "C:\Outlook\MyFiles" or ""
> >> 'If you use "" it will create a date/time stamped folder for you in
> >> the "My Documents" folder.
> >> 'Note: If you use this "C:\Outlook\MyFiles" the folder must exist

> >
> >>     SaveEmailAttachmentsToFolder "MyTestFolder", "xls", "C:\BH-Outlook
> >> \TestSave"

> >
> >> End Sub

> >
> >> Public Sub SaveEmailAttachmentsToFolder(OutlookFolderInInbox As
> >> String, ExtString As String, DestFolder As String)
> >> On Error GoTo ThisMacro_err
> >> 'Do not change code in the macro below

> >
> >>     Dim ns As NameSpace
> >>     Dim Inbox As MAPIFolder
> >>     Dim SubFolder As MAPIFolder
> >>     Dim Item As Object
> >>     Dim Atmt As Attachment
> >>     Dim FileName As String
> >>     Dim MyDocPath As String
> >>     Dim I As Integer
> >>     Dim wsh As Object
> >>     Dim fs As Object

> >
> >>     Set ns = GetNamespace("MAPI")
> >>     Set Inbox = ns.GetDefaultFolder(olFolderInbox)
> >>     Set SubFolder = Inbox.Folders(OutlookFolderInInbox)

> >
> >>     I = 0
> >> ' Check subfolder for messages and exit of none found
> >>     If SubFolder.Items.Count = 0 Then
> >>         MsgBox "There are no messages in this folder : " &
> >> OutlookFolderInInbox, vbInformation, "Nothing Found"
> >>         Set SubFolder = Nothing
> >>         Set Inbox = Nothing
> >>         Set ns = Nothing
> >>         Exit Sub
> >>     End If

> >
> >> 'Create DestFolder if DestFolder = ""
> >>     If DestFolder = "" Then
> >>         Set wsh = CreateObject("WScript.Shell")
> >>         Set fs = CreateObject("Scripting.FileSystemObject")
> >>         MyDocPath = wsh.SpecialFolders.Item("mydocuments")
> >>         DestFolder = MyDocPath & "\" & Format(Now, "dd-mmm-yyyy hh-mm-
> >> ss")
> >>         If Not fs.FolderExists(DestFolder) Then
> >>             fs.CreateFolder DestFolder
> >>         End If
> >>     End If

> >
> >>     If Right(DestFolder, 1) <> "\" Then
> >>         DestFolder = DestFolder & "\"
> >>     End If

> >
> >> ' Check each message for attachments and extensions
> >>     For Each Item In SubFolder.Items
> >>         For Each Atmt In Item.Attachments
> >>             If LCase(Right(Atmt.FileName, Len(ExtString))) =
> >> LCase(ExtString) Then
> >>                 FileName = DestFolder & Item.SenderName & " " &
> >> Atmt.FileName
> >>                 Atmt.SaveAsFile FileName
> >>                 I = I + 1
> >>             End If
> >>         Next Atmt
> >>     Next Item

> >
> >> ' Show this message when Finished
> >>     If I > 0 Then
> >>         MsgBox "You can find the files here : " _
> >>              & DestFolder, vbInformation, "Finished!"
> >>     Else
> >>         MsgBox "No attached files in your mail.", vbInformation,
> >> "Finished!"
> >>     End If

> >
> >> ' Clear memory
> >> ThisMacro_exit:
> >>     Set SubFolder = Nothing
> >>     Set Inbox = Nothing
> >>     Set ns = Nothing
> >>     Set fs = Nothing
> >>     Set wsh = Nothing
> >>     Exit Sub

> >
> >> ' Error information
> >> ThisMacro_err:
> >>     MsgBox "An unexpected error has occurred." _
> >>          & vbCrLf & "Please note and report the following
> >> information." _
> >>          & vbCrLf & "Macro Name: SaveEmailAttachmentsToFolder" _
> >>          & vbCrLf & "Error Number: " & Err.Number _
> >>          & vbCrLf & "Error Description: " & Err.Description _
> >>          , vbCritical, "Error!"
> >>     Resume ThisMacro_exit

> >
> >> End Sub-

>

>


> I assume you mean here and unfortunetly I don't know how to do that. I
> don't really know Outlook vba. What would the vba code be to select
> and check the "msg as Mailitem" before moving it the the subfloder?

> ' Check each message for attachments and extensions
> For Each Item In SubFolder.Items
> For Each Atmt In Item.Attachments
> If LCase(Right(Atmt.FileName, Len(ExtString))) =
> LCase(ExtString) Then
> FileName = DestFolder & Item.SenderName & " " &
> Atmt.FileName
> Atmt.SaveAsFile FileName
> I = I + 1
> End If
> Next Atmt
> Next Item
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
L VBA to Triage Incoming Email Outlook VBA and Custom Forms 0
J Outlook VBA to send from Non-default Account & Data Files Outlook VBA and Custom Forms 2
H using VBA to edit subject line Outlook VBA and Custom Forms 0
G Get current open draft message body from VBA Outlook VBA and Custom Forms 1
Geldner Problem submitting SPAM using Outlook VBA Form Outlook VBA and Custom Forms 2
P VBA to add email address to Outlook 365 rule Outlook VBA and Custom Forms 0
M Outlook 2016 outlook vba to look into shared mailbox Outlook VBA and Custom Forms 0
V VBA Categories unrelated to visible calendar and Visual appointment Categories Outlook VBA and Custom Forms 2
D Outlook VBA forward the selected email to the original sender’s email ID (including the email used in TO, CC Field) from the email chain Outlook VBA and Custom Forms 2
R Outlook 365 VBA AUTO SEND WITH DELAY FOR EACH EMAIL Outlook VBA and Custom Forms 0
R Outlook 2019 VBA to List Meetings in Rooms Outlook VBA and Custom Forms 0
geoffnoakes Counting and/or listing fired reminders via VBA Using Outlook 1
O VBA - Regex - remove double line spacing Outlook VBA and Custom Forms 1
D.Moore Strange VBA error Outlook VBA and Custom Forms 4
B Modify VBA to create a RULE to block multiple messages Outlook VBA and Custom Forms 0
D Outlook 2021 Using vba code to delete all my spamfolders not only the default one. Outlook VBA and Custom Forms 0
K vba code to auto download email into a specific folder in local hard disk as and when any new email arrives in Inbox/subfolder Outlook VBA and Custom Forms 0
D VBA - unable to set rule condition 'on this computer only' Outlook VBA and Custom Forms 5
L Fetch, edit and forward an email with VBA outlook Outlook VBA and Custom Forms 2
BartH VBA no longer working in Outlook Outlook VBA and Custom Forms 1
W Can vba(for outlook) do these 2 things or not? Outlook VBA and Custom Forms 2
MattC Changing the font of an email with VBA Outlook VBA and Custom Forms 1
P MailItem.To Property with VBA not work Outlook VBA and Custom Forms 2
P Tweak vba so it can target another mailbox Outlook VBA and Custom Forms 1
A Outlook 2010 VBA fails to launch Outlook VBA and Custom Forms 2
richardwing Outlook 365 VBA to access "Other Actions" menu for incoming emails in outlook Outlook VBA and Custom Forms 0
W Create a Quick Step or VBA to SAVE AS PDF in G:|Data|Client File Outlook VBA and Custom Forms 1
J Outlook Rules VBA Run a Script - Multiple Rules Outlook VBA and Custom Forms 0
C Outlook (desktop app for Microsoft365) restarts every time I save my VBA? Using Outlook 1
D VBA Macro to Print and Save email to network location Outlook VBA and Custom Forms 1
TedSch Small vba to kill political email Outlook VBA and Custom Forms 3
E Outlook 365 Outlook/VBA Outlook VBA and Custom Forms 11
N VBA Macro To Save Emails Outlook VBA and Custom Forms 1
Z VBA Forward vs manual forward Outlook VBA and Custom Forms 2
J VBA Cannot programmatically input or change Value for User Defined field Using Outlook 1
J VBA for outlook to compare and sync between calendar Outlook VBA and Custom Forms 1
A Any way to force sort by/group by on search results with VBA? Outlook VBA and Custom Forms 1
E Default shape via VBA Outlook VBA and Custom Forms 4
A Change settings Send/receive VBA Outlook VBA and Custom Forms 0
Z Import Tasks from Access Using VBA including User Defined Fields Outlook VBA and Custom Forms 0
E Outlook VBA change GetDefaultFolder dynamically Outlook VBA and Custom Forms 6
justicefriends How to set a flag to follow up using VBA - for addressee in TO field Outlook VBA and Custom Forms 11
M add new attendee to existing meetings with VBA Outlook VBA and Custom Forms 5
D VBA code to select a signature from the signatures list Outlook VBA and Custom Forms 3
D Create advanced search (email) via VBA with LONG QUERY (>1024 char) Outlook VBA and Custom Forms 2
David McKay VBA to manually forward using odd options Outlook VBA and Custom Forms 1
FryW Need help modifying a VBA script for in coming emails to auto set custom reminder time Outlook VBA and Custom Forms 0
S vba outlook search string with special characters Outlook VBA and Custom Forms 1
S VBA search string with special characters Outlook VBA and Custom Forms 1
U Outlook 2019 VBA run-time error 424 Outlook VBA and Custom Forms 2

Similar threads

Back
Top