CommandBarButton.BeginGroup. ... From: jljackson222 [mailto:jljackson222@...] Sent: Sunday, January 02, 2005 10:23 AM To: outlook-dev@yahoogroups.com ...
To whom it may be concern, I made a custom form in office 2000 but it is not working in office XP (2002). Unfortunatly there is no error message box to show...
Code doesn't run in unpublished or other one-off forms in Outlook 2000 SP-2 or later versions. See http://www.outlookcode.com/d/secforms.htm -- Sue Mosher,...
Hi all, I am trying to write a program that will calculate the number of hours involved in a calender item that spans several calender days according to the...
I have been trying to find a way to have a distribution list on my computer updated/created via an access database. I have picked up Sue Moshers "Microsoft...
Inside of an Access database I have the ability to generate an outlook email message. The code below sets all the parameters. The only thing I haven't been...
Worst, Debbie
dworst@...
Jan 4, 2005 6:51 pm
24872
What are you doing within Access to initialize this so that the Outlook.Application object appears?...
Two possible methods: 1) Set MyMail.HTMLBody, not MyMail.Body, to the fully tagged HTML code for both the stationery you want to use and the text you want to ...
Sue: I tried that but it doesn't see the file. When you say set the MyMail.HTML Body to the fully tagged HTML code are you speaking about the path to the html...
Worst, Debbie
dworst@...
Jan 4, 2005 8:03 pm
24875
Sue: I tried that but it doesn't see the file. When you say set the MyMail.HTML Body to the fully tagged HTML code are you speaking about the path to the html...
Worst, Debbie
dworst@...
Jan 4, 2005 8:14 pm
24876
Inside of an Access database I have the ability to generate an outlook email message. The code below sets all the parameters. The only thing I haven't been...
Worst, Debbie
dworst@...
Jan 4, 2005 8:39 pm
24877
HTMLBody is a string property. Therefore, you must read the ***contents*** of the file and assign that string, modified to include your specific message text,...
I think it is possible. Read this: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsmart00/h tml/sa00h12.asp ... From: petertelus...
I would like to have an HTML link that creates and opens a new appointment in a specific calendar. I have figured out how to use the outlook: href to open an...
Erick Thompson
ethompson@...
Jan 5, 2005 7:28 am
24881
... Yes, if you by that mean the account/setup used in Outlook for retrieving messages from the mailserver. It is an POP3 account. ... problem. ... MAPI ... ...
You can't do this with a link. To store an item in a particular calendar folder would require custom code, which can only run in a published Outlook form, not...
Toby Just to make sure I understand the problem you are still experiencing with Office 2003 SP1 If a user profile is setup to use exchange cache mode, the ...
Hello, Yes that is the issue. The only thing we could do was disable Exchange Cache Mode since the only ones affected were laptop users and the Offline files...
Hi all, I am writing a function that processes calender items between a set of two dates. What I want to be able to do is have a start-date and an end-date...
This is normal behavior. #1/1/4501# the date that Outlook actually is storing when the user sees "None" in the UI. You can use that date in your comparison...
For the moment, as a work around, I have used a comparison against the date "1/01/4501" to check for what is effectively a blank field. However, if anyone...
Thanks heaps for that Sue, Here is the final code, which seems to be working perfectly now: Function shouldInclude( theCallItem ) ' This function returns TRUE...
Hi all, I have some code that loops through all of the items in the Outlook Calender, and does some processing on them and copies values from them into an...
Take a look at the Items.Sort method and also Include Recurrences. -- Sue Mosher, Outlook MVP Outlook and Exchange solutions at http://www.slipstick.com Author...
Perfect! Thanks alot! 8-) I added the line: calItems.Sort "[Start]" once I had obtained the Calender collection; subsequently when I loop throguh them they're...
Hi all, I am writing a program that processes calender items that occur between two user-specified dates. At the moment, my code loops throgh the entire...
Looking at this page: http://www.outlookcode.com/d/finddate.htm It seems that the best way to do this, is going to be to use the colItems.Find(strSearch) ...
After Loading the Outlook Mail Items from the MailBox in an External Application, How can I add the newly arrived Mail Items to the existing Mail Items ...