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...
See my reply in microsoft.public.outlook.program_addins _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of eduardogrout ...
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:...
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...
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...
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...
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...
You can try FolderFrog for this. http://www.folderfrog.com/ == Harley From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of...
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") =...
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: ...
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...
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 ...
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...
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...
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:...
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...
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...
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@...
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...
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@...
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...
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...
This lines is also in the code - I only forgot to insert them in the example below. Set Session = CreateObject("Redemption.RDOSession") Session.MAPIOBJECT =...
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...
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...