|
| |
|
|
accessman
Posts: 74 Joined: 9/13/2005 Status: offline
|
Disable warning in outlook - 3/21/2006 2:53:40
When I send e-mail from Access via outlook with a link, there are warning message when the user click the link to open the file: WARNING: web pages, executables, and other attachments may contain viruses or scripts that can be harmful to your computer. It is important to be certain that this file is from a trustworthly source. What would you like to do with this file? Open it Save it to disk. (E drive is sharing drive) Dim MiOutlook As Outlook.Application Dim MiCorreo As Outlook.MailItem Dim NombreFichero As String Dim NombreFicheroConRuta As String Set MiOutlook = New Outlook.Application Set MiCorreo = MiOutlook.CreateItem(olMailItem) With MiCorreo .To = "alan@yahoo.com" .Subject = "Test" .BodyFormat = olFormatHTML .HTMLBody = "<A HREF='E:\db1.mdb' >Open database</A>" .Send End With Set MiCorreo = Nothing Set MiOutlook = Nothing How can I disable this warning message? Does anybody know? Please let me know, thanks.
|
|
|
|
yb2
Posts: 653 Joined: 1/30/2006 Status: offline
|
RE: Disable warning in outlook - 3/21/2006 15:05:47
It'll be a registry hack, so you'll have to do it on each client machine.
|
|
New Messages |
No New Messages |
Hot Topic w/ New Messages |
Hot Topic w/o New Messages |
Locked w/ New Messages |
Locked w/o New Messages |
|
Post New Thread
Reply to Message
Post New Poll
Submit Vote
Delete My Own Post
Delete My Own Thread
Rate Posts
|
|
|