VBA editor opens when sending an email

Status
Not open for further replies.

Dilshad

New Member
Outlook version
Outlook 2010 64 bit
Email Account
Exchange Server
Hi,

I have written a code to check if I have my manager in to or cc. If not then it gives a popup. It is working fine.
but the issue is when I send an email, VBA editor opens and points at If statement. Please see screen shot and code below.

Screen Shot:
upload_2015-11-13_13-7-57.png


Code:
"
Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)

Dim Recipients As Outlook.Recipients
Dim recip As Outlook.Recipient
Dim i As Integer
Dim prompt As String
Dim Flag As Boolean
Dim RecCount

On Error Resume Next
' use lower case for the address
' LCase converts all addresses in the To field to lower case
Flag = False

Set RecCount = Item.Recipients

Set Recipients = Item.Recipients
For i = Recipients.Count To 1 Step -1
Set recip = Recipients.Item(i)

If InStr(LCase(recip), "Manager") Then
Flag = True
ElseIf InStr(LCase(recip), "Team Lead1") Then
Flag = True
ElseIf InStr(LCase(recip), "Team Lead2") Then
Flag = True
ElseIf InStr(LCase(recip), "Team Lead3") Then
Flag = True
End If

Next i

If Flag = False Then
prompt$ = "You are not including your Manager . Are you sure you want to send it?"

If MsgBox(prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, "Check Address") = vbNo Then
Cancel = True
End If
' Else
' prompt$ = "Good Work . Are you sure you want to send it?"
'
' If MsgBox(prompt$, vbYesNo + vbQuestion + vbMsgBoxSetForeground, "Check Address") = vbNo Then
' Cancel = True
' End If

End If


End Sub
"

I have two questions
1) How can I stop VBA editor opening automatically and pointing at if?
2) Can I pass this code to my team, so that they all can use it. What is the best possible way to do this, where team members can't change the code?

Please, help me with this. Looking forward for your reply.
Thanks in advance.
 
Once you fix whatever is wrong, it will stop doing that :) but adding on error resume next right before that line should stop it too.

I would add a debug.print recip there instead and the next time it comes up, show the immediate window and see what value was assigned to recip that is causing it to trip.

As for sharing it, you would need to compile it as an addin if you wanted to prevent people from changing it.

oh, and one problem which can cause it to fail - this tells it to convert recip to lower case and compare it with a proper word - use all lower case words in the match side.
If InStr(LCase(recip), "Manager") Then
 
Last edited:
Thanks a lot for your reply Diane Poremsky.

It seems there was no issue with the code, once I restarted my system, code is working as expected and it is not opening VBA editor. :)

Monday, I will share it with my colleagues. Will try the process you mentioned.

Once again, thanks for your help.
 
Status
Not open for further replies.
Similar threads
Thread starter Title Forum Replies Date
J Macro only runs within VBA Editor Outlook VBA and Custom Forms 2
A VBA Editor doesn't Start Outlook VBA and Custom Forms 1
C Use VBA editor on my custom OL form Outlook VBA and Custom Forms 7
S macro ist just worling wenn vba editor is open! Outlook VBA and Custom Forms 1
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

Similar threads

Back
Top