Search the web
Sign In
New User? Sign Up
outlook-dev · Outlook Development
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Want to share photos of your group with the world? Add a group photo to Flickr.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 24865 - 24894 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
24865
How do I add a vertical menu seperator to my toolbar in my outlook addin?...
jljackson222
Offline Send Email
Jan 2, 2005
5:23 pm
24866
CommandBarButton.BeginGroup. ... From: jljackson222 [mailto:jljackson222@...] Sent: Sunday, January 02, 2005 10:23 AM To: outlook-dev@yahoogroups.com ...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jan 3, 2005
3:44 pm
24867
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...
reza minooei
rminooei400
Offline Send Email
Jan 3, 2005
3:44 pm
24868
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,...
Sue Mosher
sue_mosher_g...
Offline Send Email
Jan 3, 2005
4:57 pm
24869
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...
dbuddrige
Offline Send Email
Jan 4, 2005
7:54 am
24870
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...
petertelus
Offline Send Email
Jan 4, 2005
6:10 pm
24871
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@...
Send Email
Jan 4, 2005
6:51 pm
24872
What are you doing within Access to initialize this so that the Outlook.Application object appears?...
petertelus
Offline Send Email
Jan 4, 2005
7:17 pm
24873
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 Mosher
sue_mosher_g...
Offline Send Email
Jan 4, 2005
7:49 pm
24874
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@...
Send Email
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@...
Send Email
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@...
Send Email
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,...
Sue Mosher
sue_mosher_g...
Offline Send Email
Jan 4, 2005
8:59 pm
24878
Hi all, I have written code that resolves the problem it is as follows: Dim currentHour Dim currentMinute Dim countOfHours Dim countOfMinutes Dim...
dbuddrige
Offline Send Email
Jan 5, 2005
6:29 am
24879
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...
Vaidotas Cibulskas
vaidokliz
Offline Send Email
Jan 5, 2005
7:10 am
24880
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@...
Send Email
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 ... ...
Kjetil
sixthgenie
Offline Send Email
Jan 5, 2005
10:22 am
24882
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...
Sue Mosher
sue_mosher_g...
Offline Send Email
Jan 5, 2005
1:50 pm
24883
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 ...
ijourneaux
Offline Send Email
Jan 5, 2005
4:13 pm
24884
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...
tworth@...
tworth2002
Offline Send Email
Jan 5, 2005
6:00 pm
24885
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...
dbuddrige
Offline Send Email
Jan 6, 2005
1:26 am
24886
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...
Sue Mosher
sue_mosher_g...
Offline Send Email
Jan 6, 2005
1:41 am
24887
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...
dbuddrige
Offline Send Email
Jan 6, 2005
1:48 am
24888
Thanks heaps for that Sue, Here is the final code, which seems to be working perfectly now: Function shouldInclude( theCallItem ) ' This function returns TRUE...
dbuddrige
Offline Send Email
Jan 6, 2005
2:11 am
24889
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...
dbuddrige
Offline Send Email
Jan 6, 2005
3:06 am
24890
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...
Sue Mosher
sue_mosher_g...
Offline Send Email
Jan 6, 2005
3:16 am
24891
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...
dbuddrige
Offline Send Email
Jan 6, 2005
4:19 am
24892
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...
dbuddrige
Offline Send Email
Jan 6, 2005
6:45 am
24893
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) ...
dbuddrige
Offline Send Email
Jan 6, 2005
7:11 am
24894
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 ...
nandan
pnandan13
Offline Send Email
Jan 6, 2005
9:31 am
Messages 24865 - 24894 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help