![]() |
| If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|||||||
| Tags: promt, window |
|
|
Thread Tools | Display Modes |
|
#1
|
|||
|
|||
|
Sub
Dim myolApp As Outlook.Application Dim myNamespace As Outlook.NameSpace Dim myMailItem As Outlook.MailItem Set myolApp = Outlook.Application Set myNamespace = myolApp.GetNamespace("MAPI") Set myMailItem = myNamespace.OpenSharedItem(fileNameMSG) myMailItem.SaveAs fileNameRTF, olRTF myMailItem.Close olDiscard End Sub When I have .msg file with digital signature, while running makros, Outlook asks user "You try to save encrypting message in unsafe format. Continue?" Can I set automatically answer "YES" and how? How can I check, is there promt window or not? Thanks |
| Ads |
|
#2
|
|||
|
|||
|
Unless you change your SaveAs format, you will continue to get prompted and
there's nothing in the Outlook Object Model that you can set to suppress it. -- Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.) Try Picture Attachments Wizard for Outlook: http://www.collaborativeinnovations.ca Blog: http://blogs.officezealot.com/legault/ "boltnia" wrote: Sub Dim myolApp As Outlook.Application Dim myNamespace As Outlook.NameSpace Dim myMailItem As Outlook.MailItem Set myolApp = Outlook.Application Set myNamespace = myolApp.GetNamespace("MAPI") Set myMailItem = myNamespace.OpenSharedItem(fileNameMSG) myMailItem.SaveAs fileNameRTF, olRTF myMailItem.Close olDiscard End Sub When I have .msg file with digital signature, while running makros, Outlook asks user "You try to save encrypting message in unsafe format. Continue?" Can I set automatically answer "YES" and how? How can I check, is there promt window or not? Thanks |
|
#3
|
|||
|
|||
|
I can use SendKeys and it helps. But SendKeys has additifity property. I will
have situations when I need it and don't need it. Can I know, is there promt window or not? Thanks "Eric Legault [MVP - Outlook]" wrote: Unless you change your SaveAs format, you will continue to get prompted and there's nothing in the Outlook Object Model that you can set to suppress it. -- Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.) Try Picture Attachments Wizard for Outlook: http://www.collaborativeinnovations.ca Blog: http://blogs.officezealot.com/legault/ "boltnia" wrote: Sub Dim myolApp As Outlook.Application Dim myNamespace As Outlook.NameSpace Dim myMailItem As Outlook.MailItem Set myolApp = Outlook.Application Set myNamespace = myolApp.GetNamespace("MAPI") Set myMailItem = myNamespace.OpenSharedItem(fileNameMSG) myMailItem.SaveAs fileNameRTF, olRTF myMailItem.Close olDiscard End Sub When I have .msg file with digital signature, while running makros, Outlook asks user "You try to save encrypting message in unsafe format. Continue?" Can I set automatically answer "YES" and how? How can I check, is there promt window or not? Thanks |
|
#4
|
|||
|
|||
|
If you choose that format for e-mails with a digital signature, you can
always expect that prompt. -- Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.) Try Picture Attachments Wizard for Outlook: http://www.collaborativeinnovations.ca Blog: http://blogs.officezealot.com/legault/ "boltnia" wrote: I can use SendKeys and it helps. But SendKeys has additifity property. I will have situations when I need it and don't need it. Can I know, is there promt window or not? Thanks "Eric Legault [MVP - Outlook]" wrote: Unless you change your SaveAs format, you will continue to get prompted and there's nothing in the Outlook Object Model that you can set to suppress it. -- Eric Legault - Outlook MVP, MCDBA, MCTS (SharePoint programming, etc.) Try Picture Attachments Wizard for Outlook: http://www.collaborativeinnovations.ca Blog: http://blogs.officezealot.com/legault/ "boltnia" wrote: Sub Dim myolApp As Outlook.Application Dim myNamespace As Outlook.NameSpace Dim myMailItem As Outlook.MailItem Set myolApp = Outlook.Application Set myNamespace = myolApp.GetNamespace("MAPI") Set myMailItem = myNamespace.OpenSharedItem(fileNameMSG) myMailItem.SaveAs fileNameRTF, olRTF myMailItem.Close olDiscard End Sub When I have .msg file with digital signature, while running makros, Outlook asks user "You try to save encrypting message in unsafe format. Continue?" Can I set automatically answer "YES" and how? How can I check, is there promt window or not? Thanks |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| How do you make the reminder window appear on top of other window. | JR | Outlook - Calandaring | 2 | February 8th 07 09:41 PM |
| Outlook 2003: Promt for password all the time | Jacob Jørgensen | Outlook - General Queries | 2 | December 17th 06 08:19 PM |
| OE6 new message window opens behind main window. | baobob@my-deja.com | Outlook Express | 2 | August 14th 06 11:09 PM |
| New window | shakey | Outlook Express | 6 | March 2nd 06 11:25 PM |
| Distribution list window dosn't show the same as in contact window | Rose | Outlook - Using Contacts | 5 | February 26th 06 11:17 PM |