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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 27511 - 27540 of 28048   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
27511
When getting the StoreID from the same Contact Item in Outlook 2007 and Outlook 2003 the StoreIDs are different in length. This becomes a problem when trying...
eduardogrout
Offline Send Email
Jan 10, 2008
3:18 am
27512
See my reply in microsoft.public.outlook.program_addins _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of eduardogrout ...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jan 10, 2008
4:41 pm
27513
Can you send the reply also here Thank RINO ... Da: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] Per conto di Dmitry Streblechenko Inviato:...
Rino Salvatore Cosent...
rinosalvator...
Offline Send Email
Jan 10, 2008
5:23 pm
27514
Theoretically, there is no limit on the length of an entry id. Any entry id must be treated as a black box and your code must be prepared to handle entry ids...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jan 10, 2008
6:42 pm
27515
Thank But if my application link an item with entryID in OUTL 2002 you think that work in OUTL2007. Function is GetItemFromID Thank Rino ... Da:...
Rino Salvatore Cosent...
rinosalvator...
Offline Send Email
Jan 11, 2008
8:22 am
27516
Will it be used on a different machine under a different user identity or on the same machine after you upgrade Outlook 2002 to 2007 in case of an Exchange...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jan 11, 2008
6:23 pm
27517
Items are in a pubblic folder of exchange 2003. User open items in the public folder with GetItemFromID from a custom task item that is in private mail box...
Rino Salvatore Cosent...
rinosalvator...
Offline Send Email
Jan 11, 2008
6:45 pm
27518
Hi there outlook group, I have a small office that does constuction based projects. We receive many e-mails a day and need to keep them sorted by project when...
hawkster2003
Offline Send Email
Jan 18, 2008
8:58 pm
27519
You can try FolderFrog for this. http://www.folderfrog.com/ == Harley From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of...
Harley Davis
hedavis226
Offline Send Email
Jan 18, 2008
10:50 pm
27520
Hello I am trying to add a customized field to a outlook Appointment customized form. In Outlook itm.UserProperties.Add("Textfield",...
Terje Kristiansen
terje252003
Offline Send Email
Jan 21, 2008
11:59 am
27521
I found out how to add a field. Itm.Fields("Textfield") = Value But I got an empty field value if the Field is an DATE field. Itm.Fields("datefield") =...
Terje Kristiansen
terje252003
Offline Send Email
Jan 21, 2008
2:28 pm
27522
Format() returns a string, so it looks like you're trying to use a string value instead of a date value to set the value of a date field. All you need is: ...
Sue Mosher
sue_mosher_g...
Offline Send Email
Jan 21, 2008
4:06 pm
27523
Hi , I have one outlook-addin and it was working fine with 2003 , it is not working in 2007 . once i click on the add in button outlook is crashing .. and it...
sathish.kulal
Online Now Send Email
Jan 21, 2008
4:11 pm
27524
It did not help I specify Itm.Fields("datefield") = Date() The strange thing is: When I have created the Appointment programmatically AIN my code I have a i ...
Terje Kristiansen
terje252003
Offline Send Email
Jan 21, 2008
7:07 pm
27525
Try deleting the folder's field definition and creating it again as a date field. ... Try deleting the folder's field definition and creating it again as a...
Sue Mosher
sue_mosher_g...
Offline Send Email
Jan 21, 2008
7:52 pm
27526
If you simply specify the field name, Redemption always assumes that the type is string – it does not read the field definition since it is stored in a...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jan 21, 2008
8:29 pm
27527
Thank you very much For the Date field worked very fine. But the time “hh:mm” field adds an extra hour . eg. I specify 02:00 and (I can see that...
Terje Kristiansen
terje252003
Offline Send Email
Jan 21, 2008
10:53 pm
27528
And I have found out that the Date field one hour is added extra. Eg. I specify 22.01.2008 00:00:00 – the result in Outlook is 22.01.2008 01:00:00 terje Fra:...
Terje Kristiansen
terje252003
Offline Send Email
Jan 21, 2008
11:48 pm
27529
All PT_SYSTIME properties in MAPI are stored in the UTC time zone, and you are probably 1 hour off. You can convert to/from UTC using...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jan 21, 2008
11:53 pm
27530
Thank you for your support I first used the Outlook object model – Then and I got a security warning because I browse an address list and also resolve a...
Terje Kristiansen
terje252003
Offline Send Email
Jan 22, 2008
12:05 am
27531
Did you set the MessageClass property appropriately? Or call RDOItems.Add specifying the correct message class? What are the relevant snippets of your OOM vs...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jan 22, 2008
12:18 am
27532
I have a simple form that has several fields in which the user will enter data. I'd like to modify the subject based on some of those fields? Is this the...
oldevlist@...
Send Email
Jan 24, 2008
8:07 pm
27533
Is this a custom Outlook form? Outlook form controls do not support an AfterUpdate event. You would need to bind the txtLocation box to an Outlook property and...
Sue Mosher
sue_mosher_g...
Offline Send Email
Jan 24, 2008
9:20 pm
27534
Thanks Sue. I was able to modify the subject line based on the user input. I was also able to blank-out the message body. The person who created the form ...
oldevlist@...
Send Email
Jan 24, 2008
11:37 pm
27535
To modify a message body while in design mode, you can write a little VBA macro (Application.ActiveInspector.CurrentItem.Body = ""). The message body is the...
Sue Mosher
sue_mosher_g...
Offline Send Email
Jan 24, 2008
11:42 pm
27536
With the OOM I only added the Icon into the form (To the properties area – here it is possible to add an big Icon and a small Icon) – I did not used any...
Terje Kristiansen
terje252003
Offline Send Email
Jan 25, 2008
8:44 am
27537
This lines is also in the code - I only forgot to insert them in the example below. Set Session = CreateObject("Redemption.RDOSession") Session.MAPIOBJECT =...
Terje Kristiansen
terje252003
Offline Send Email
Jan 25, 2008
10:14 am
27538
1. If you set the PR_ICON_INDEX property, it takes precedence over the message class. Why are you setting PR_ICON_INDEX? 2. Why are you using...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jan 25, 2008
4:30 pm
27539
1.) I try to use the PR_ICON_INDEX because setting the Message Class myItem.MessageClass = "IPM.Appointment.Foto-oppdrag" did not give med the ICON i expected...
terje kristiansen
terje252003
Offline Send Email
Jan 25, 2008
5:58 pm
27540
1. Did you compare the good (created by Outlook) and bad (created by RDO) appointments using OutlookSpy (click IMessage button)? What are the values of...
Dmitry Streblechenko
dimastr2001
Offline Send Email
Jan 25, 2008
6:16 pm
Messages 27511 - 27540 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