Click Yes

msnow

New Member
Joined
Oct 23, 2003
Messages
9
I have a nice little macro that emails about 100 reports out automatically. However, I just got a new laptop and now I get a warning, prior to each report that tells me that my computer is trying to send email, do I want to permit it. Does anyone know of a way around this? I have heard of a program called "Click Yes", does anyone know where I can get it?

:oops:
 

Excel Facts

How can you turn a range sideways?
Copy the range. Select a blank cell. Right-click, Paste Special, then choose Transpose.
I've never done something like the task that you're describing so I don't know if this will work, but in the Macro's code, try starting the code off with:
Code:
DoCmd.SetWarnings False

to turn off the application's built-in Warnings. After the code executes which fires off your e-mails, turn the warnings back on:

Code:
DoCmd.SetWarnings True
 
Upvote 0
Does that turn off Outlook warnings as well? This is an Outlook warning not a Access Warning.

Thanks for the info.
 
Upvote 0
Upvote 0

Forum statistics

Threads
1,221,574
Messages
6,160,602
Members
451,657
Latest member
Ang24

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top