![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
Hello,
in my program I'm instantiating an object of the type "Microsoft.Office.Interop:Outlook". When I want to access Outlook Calendar and get items I have to set a criteria filter. Unfortunately there are differences in the criteria between the English and German version of MS Outlook 2003. How can my programm find out the LCID or any other unique language identifier of MS Outlook? Not MS Office! Only MS Outlook itself, because there is an English version of MS Office but a German Version of MS Outlook. Thanks in advance for any hint. Regards, Gernut Mulisch |
Ads |
#2
|
|||
|
|||
![]()
I found a way which helped me in my case. Sample code in C# :
using System.Runtime.InteropServices; using MyOutlook = Microsoft.Office.Interop.Outlook; [...] MyOutlook.Application app = null; int iLCID = 0; [...] this.app = new MyOutlook.Application(); this.iLCID = this.app.LanguageSettings.get_LanguageID(Microsoft .Office.Core.MsoAppLanguageID.msoLanguageIDUI); Regards, Gernot Mulisch |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Spell Check / Language Issue with Office (Outlook) 2003 | Ben | Outlook - General Queries | 1 | February 21st 07 02:49 AM |
Register 2003 version of Office / outlook | Les | Outlook - General Queries | 4 | July 25th 06 06:16 PM |
Can I import Outlook 2003 customizations into another version? | Marc Fredson | Outlook - Installation | 0 | May 31st 06 01:25 AM |
Trying to install Outlook 2003 after using trial version Office 2003 | Sherry C | Outlook - General Queries | 5 | February 4th 06 11:54 PM |
Outlook 2000 v 2003 version issue? | Sue Mosher [MVP-Outlook] | Outlook - Using Forms | 4 | January 30th 06 03:54 PM |