A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Search Forums
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Showing results 1 to 25 of 26
Search took 0.03 seconds.
Search: Posts made by: jim
Forum: Add-ins for Outlook February 23rd 06, 09:06 PM Posted to microsoft.public.outlook.program_addins
Replies: 4
Views: 1,365
Posted By jim
Any advantages of VSTO instead of VB6 for Outlook add-in?

I use C# for my add-ins and I have had success. One thing to be careful
of is the version of the interop assembly you end up using. Be sure, and
I know this is mentioned on outlookcode.com, to use...
Forum: Add-ins for Outlook February 23rd 06, 08:56 PM Posted to microsoft.public.outlook.program_addins
Replies: 2
Views: 837
Posted By jim
HKCR and Shim

Well I may have solved it. In the registry file in the Shim I changed
from HKLM to HKCU, I thought I may have to change the HKCR, but it seems
that HKCR will write to HKCU first.
Contact me if you...
Forum: Add-ins for Outlook February 23rd 06, 08:41 PM Posted to microsoft.public.outlook.program_addins
Replies: 2
Views: 837
Posted By jim
HKCR and Shim

I noticed the Shim uses HKCR in order to place the load behavior;
however if a non-admin users tries to register the shim they do not have
permissions to write to HKCR.
Any clues on how to get...
Forum: Add-ins for Outlook February 21st 06, 06:42 PM Posted to microsoft.public.outlook.program_addins
Replies: 1
Views: 852
Posted By jim
Outlook add-in, MS Word problem

What you may have to do Dennis is use an Inspector Wrapper to help with
your problem. Earlier Ken pointed me to an example in C#:
http://www.outlookcode.com/codedetail.aspx?id=797
Hope this...
Forum: Add-ins for Outlook February 19th 06, 06:06 AM Posted to microsoft.public.outlook.program_addins
Replies: 1
Views: 912
Posted By jim
Shared Office Add-in

The thing I have done in this case is to create a shim in order to load
your application.

Code_Hound wrote:
First I appologise if this is not the correct newsgroup for this post. I
would be...
Forum: Add-ins for Outlook February 17th 06, 11:14 PM Posted to microsoft.public.outlook.program_addins
Replies: 1
Views: 939
Posted By jim
Right Click on Inspector Window header

Is it possible to add to the context menu in an inspector as well.
For Example if you bring up a mailitem and right click over an email in
the header, it will bring up a context menu asking if you...
Forum: Add-ins for Outlook February 17th 06, 11:12 PM Posted to microsoft.public.outlook.program_addins
Replies: 5
Views: 1,281
Posted By jim
Inspector Wrapper utlook 2000

Thank you Ken that work out great.

Ken Slovak - [MVP - Outlook] wrote:
See http://www.outlookcode.com/codedetail.aspx?id=797 for an example of
an Inspector wrapper in C#.
Forum: Add-ins for Outlook February 16th 06, 06:21 PM Posted to microsoft.public.outlook.program_addins
Replies: 0
Views: 901
Posted By jim
lose onupdate event

I am trying to modify the contextmenu in outlook, and it works fine, but
then I lose the context menu, it seems to happen b/c the onupdate event
for the explorer does not get fired anymore only if...
Forum: Add-ins for Outlook February 15th 06, 07:13 PM Posted to microsoft.public.outlook.program_addins
Replies: 0
Views: 778
Posted By jim
load CommandBarPopup

Hello I am a adding a CommandBarPopup to the ContextMenu in Outlook and
when the user clicks this the expansion I would like to go to a db and
pull some values; however I do not want to load those...
Forum: Add-ins for Outlook February 8th 06, 09:04 PM Posted to microsoft.public.outlook.program_addins
Replies: 5
Views: 1,281
Posted By jim
Inspector Wrapper utlook 2000

I am using C#
Rog

Ken Slovak - [MVP - Outlook] wrote:
What language are you using? There definitely is an Inspector.Activate
event and both Inspectors and Items have Close events that you can...
Forum: Add-ins for Outlook February 8th 06, 06:24 PM Posted to microsoft.public.outlook.program_addins
Replies: 5
Views: 1,281
Posted By jim
Inspector Wrapper utlook 2000

I read http://www.pcreview.co.uk/forums/thread-1856258.php and explored
ItemsCB, but I am using an OOM that has the Activate() method but there
is no Activate event also there is no Close event on...
Forum: Add-ins for Outlook February 7th 06, 04:38 PM Posted to microsoft.public.outlook.program_addins
Replies: 3
Views: 1,067
Posted By jim
Create a new item

I would like to create a new folder with a new item in Outlook.
For example a "Projects" folder which would contain "Project" items.
How would I create my own special type of item outside of the...
Forum: Add-ins for Outlook January 25th 06, 03:55 PM Posted to microsoft.public.outlook.program_addins
Replies: 5
Views: 1,290
Posted By jim
Custom Forms in Outlook

Thanks Ken, so as I understand it. I can design a form in Outlook, then
distribute that with my addin. Then anytime I add a new item I can use
that form and publish it. So this will create a new...
Forum: Add-ins for Outlook January 25th 06, 03:40 PM Posted to microsoft.public.outlook.program_addins
Replies: 7
Views: 1,113
Posted By jim
Adding CommandBarPopup into the a specific Inspctor

Hi Michael how are you add the newInspector event?
Sometimes if you add an event and the object you are adding it to goes
out of scope you will lose the event.
So one thing you could do is declare...
Forum: Add-ins for Outlook January 25th 06, 03:39 PM Posted to microsoft.public.outlook.program_addins
Replies: 7
Views: 1,113
Posted By jim
Adding CommandBarPopup into the a specific Inspctor

Hi Michael how are you add the newInspector event?
Sometimes if you add an event and the object you are adding it to goes
out of scope you will lose the event.
So one thing you could do is declare...
Forum: Add-ins for Outlook January 25th 06, 12:00 AM Posted to microsoft.public.outlook.program_addins
Replies: 5
Views: 1,290
Posted By jim
Custom Forms in Outlook

Also how do I get items to use this form.
I really want to create a new folder in outlook and have items in this
folder use the new messageclass and new inspector form.
Thanks

Jim wrote:
I want...
Forum: Add-ins for Outlook January 24th 06, 08:04 PM Posted to microsoft.public.outlook.program_addins
Replies: 5
Views: 1,290
Posted By jim
Custom Forms in Outlook

I want to create a new custom form for use within my C# outlook add-in.
Do I need to create the form myself in Outlook and then somehow
distribute with my add-in?
How do I go about this...
Forum: Add-ins for Outlook January 20th 06, 08:01 PM Posted to microsoft.public.outlook.program_addins
Replies: 3
Views: 1,111
Posted By jim
New ContactItem with same EntryID

Yep they differed by one bit.
Thanks Dmitry.



jim wrote:
Let me check to be sure.
Rog

Dmitry Streblechenko wrote:
Forum: Add-ins for Outlook January 20th 06, 07:10 PM Posted to microsoft.public.outlook.program_addins
Replies: 3
Views: 1,111
Posted By jim
New ContactItem with same EntryID

Let me check to be sure.
Rog

Dmitry Streblechenko wrote:
Are you sure? How do you check that? Most likely the difference is in a
single bit.

Dmitry Streblechenko (MVP)
...
Forum: Add-ins for Outlook January 20th 06, 04:46 PM Posted to microsoft.public.outlook.program_addins
Replies: 3
Views: 1,111
Posted By jim
New ContactItem with same EntryID

HI, every time I create a new ContactItem:
..CreateItem(OlItemType.olContactItem);
and then save the contact.
I always receive the exact same EntryID.
Any ideas?
Thanks so much
Forum: Add-ins for Outlook January 18th 06, 05:07 PM Posted to microsoft.public.outlook.program_addins
Replies: 1
Views: 1,107
Posted By jim
What makes a ContactItem unique

If I am using pst or exchange, what will make a ContactItem unique. It
is the EntryID or do I need both StoreID and EntryID?
Thanks
Forum: Add-ins for Outlook January 13th 06, 09:40 PM Posted to microsoft.public.outlook.program_addins
Replies: 1
Views: 1,213
Posted By jim
The folder is full exception

I am trying to add a large number of contacts to my outlook folder,
but when I get to around 4000 I get an exception: "The folder is full"

Any ideas?
Rog
Forum: Add-ins for Outlook January 13th 06, 09:14 PM Posted to microsoft.public.outlook.program_addins
Replies: 2
Views: 1,180
Posted By jim
Restrict

Thanks I will try it.
Rog

Mark J. McGinty wrote:
"jim" wrote in message
...

I want to find all contacts that do not have an...
Forum: Add-ins for Outlook January 12th 06, 08:37 AM Posted to microsoft.public.outlook.program_addins
Replies: 2
Views: 1,180
Posted By jim
Restrict

I want to find all contacts that do not have an empty CompanyName
it seems
"[CompanyName] != ''";

does not work. Can I used != in an restrict?
Thank you
Forum: Add-ins for Outlook January 12th 06, 05:09 AM Posted to microsoft.public.outlook.program_addins
Replies: 1
Views: 2,048
Posted By jim
Redemption MAPITable

I am trying to use MAPITable to speed up retrieval. I am using C#, but
it gives an exception: "IMAPITable::SetColumns() returned 0x80070057".
What object in C# do I need to pass to table.Columns...
Showing results 1 to 25 of 26

 
Forum Jump

All times are GMT +1. The time now is 03:09 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.