msoutlook.org Forum Index
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister   ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Load add-in on Outlook 2003 startup
Goto page 1, 2  Next
 
Post new topic   Reply to topic    msoutlook.org Forum Index -> Outlook Programs Add-Ins
Author Message
goran



Joined: 08 Nov 2007
Posts: 18

PostPosted: Thu Feb 07, 2008 12:33 pm    Post subject: Load add-in on Outlook 2003 startup Reply with quote

Hi,

I developed a com Add-in for Outlook 2003. I copied it at user
profile/addins folder. What do I need to do so this add in will load
automatically when Outlook starts?

Thanks,

Goran

Archived from group: microsoft>public>outlook>program_addins
Back to top
View user's profile Send private message
Ken Slovak - [MVP - Outlo



Joined: 12 Aug 2007
Posts: 405

PostPosted: Thu Feb 07, 2008 4:09 pm    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

Assuming it actually handles the Extensibility events then it needs to be
registered. See http://support.microsoft.com/kb/302896 for some information
on that.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"goran" wrote in message @microsoft.com...
> Hi,
>
> I developed a com Add-in for Outlook 2003. I copied it at user
> profile/addins folder. What do I need to do so this add in will load
> automatically when Outlook starts?
>
> Thanks,
>
> Goran
Back to top
View user's profile Send private message
goran



Joined: 08 Nov 2007
Posts: 18

PostPosted: Thu Feb 07, 2008 4:43 pm    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

Thanks Ken.

Goran

"Ken Slovak - [MVP - Outlook]" wrote:

> Assuming it actually handles the Extensibility events then it needs to be
> registered. See http://support.microsoft.com/kb/302896 for some information
> on that.
>
> --
> Ken Slovak
> [MVP - Outlook]
> http://www.slovaktech.com
> Author: Professional Programming Outlook 2007
> Reminder Manager, Extended Reminders, Attachment Options
> http://www.slovaktech.com/products.htm
>
>
> "goran" wrote in message
> @microsoft.com...
> > Hi,
> >
> > I developed a com Add-in for Outlook 2003. I copied it at user
> > profile/addins folder. What do I need to do so this add in will load
> > automatically when Outlook starts?
> >
> > Thanks,
> >
> > Goran
>
>
Back to top
View user's profile Send private message
goran



Joined: 08 Nov 2007
Posts: 18

PostPosted: Thu Feb 14, 2008 5:57 pm    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

Ken,

I try everything and cannot get my addin to load and show in the toolbar
when Outlook starts. I have to do it manually and then is OK. I set 'Initial
Load Behavior' to 3. I copied the addin dll to my user profile under
Application Data/microsoft/AddInns. When I start the outlook the add in is
not there. I have to go manually to Tools/Options/Other/ Advanced options/COM
Addins and browse for my dll there and then it will load it. Please tell me
if there is another way to install it so it will load and show when Outlook
starts. Can I use VB 'PAckage & deployment' tool to package it, or any other
tool?

Thanks for you help as always.

Goran

"goran" wrote:

> Thanks Ken.
>
> Goran
>
> "Ken Slovak - [MVP - Outlook]" wrote:
>
> > Assuming it actually handles the Extensibility events then it needs to be
> > registered. See http://support.microsoft.com/kb/302896 for some information
> > on that.
> >
> > --
> > Ken Slovak
> > [MVP - Outlook]
> > http://www.slovaktech.com
> > Author: Professional Programming Outlook 2007
> > Reminder Manager, Extended Reminders, Attachment Options
> > http://www.slovaktech.com/products.htm
> >
> >
> > "goran" wrote in message
> > @microsoft.com...
> > > Hi,
> > >
> > > I developed a com Add-in for Outlook 2003. I copied it at user
> > > profile/addins folder. What do I need to do so this add in will load
> > > automatically when Outlook starts?
> > >
> > > Thanks,
> > >
> > > Goran
> >
> >
Back to top
View user's profile Send private message
Ken Slovak - [MVP - Outlo



Joined: 12 Aug 2007
Posts: 405

PostPosted: Fri Feb 15, 2008 2:00 pm    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

Normally a COM addin gets installed somewhere under Program Files, although
that's not a requirement. Usually that AddIns folder is used for Exchange
addins (ECE files written using Extended MAPI code).

Outlook will recognize any COM addin, no matter where it's installed, if
it's registered correctly. You should not have to browse for the addin, it
should show up in the COM AddIns dialog if it was registered in the HKCU
hive of the registry and the addin dll was registered also. If you used a
VB6 Designer then registering the addin dll will take care of writing the
keys to the registry in HKCU for you.

How you install is up to you. The P&D Wizard works but it creates large
installers that include lots of stuff that you really don't need to deploy,
like the VB6 runtime (msvbvm6.dll) and so on. Those packages also don't give
you the flexibility that a Windows Installer package provides. You can use
Windows Installer, a commercial package such as InstallShield or Wise, or
even an installation bat file. All you really need to do is put the files
where you want and run regsvr32 on the addin dll.

If you look in the registry at HKCU\Software\Microsoft\Office\Outlook\Addins
do you see your addin listed? Does it have the correct registry keys as
listed in that link I provided? If not that's the problem and you should
read the article at that link.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"goran" wrote in message @microsoft.com...
> Ken,
>
> I try everything and cannot get my addin to load and show in the toolbar
> when Outlook starts. I have to do it manually and then is OK. I set
> 'Initial
> Load Behavior' to 3. I copied the addin dll to my user profile under
> Application Data/microsoft/AddInns. When I start the outlook the add in is
> not there. I have to go manually to Tools/Options/Other/ Advanced
> options/COM
> Addins and browse for my dll there and then it will load it. Please tell
> me
> if there is another way to install it so it will load and show when
> Outlook
> starts. Can I use VB 'PAckage & deployment' tool to package it, or any
> other
> tool?
>
> Thanks for you help as always.
>
> Goran
Back to top
View user's profile Send private message
goran



Joined: 08 Nov 2007
Posts: 18

PostPosted: Fri Feb 15, 2008 3:34 pm    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

I will try P & D wizard then.

Thanks a lot Ken,

Goran

"goran" wrote:

> Thanks Ken.
>
> Goran
>
> "Ken Slovak - [MVP - Outlook]" wrote:
>
> > Assuming it actually handles the Extensibility events then it needs to be
> > registered. See http://support.microsoft.com/kb/302896 for some information
> > on that.
> >
> > --
> > Ken Slovak
> > [MVP - Outlook]
> > http://www.slovaktech.com
> > Author: Professional Programming Outlook 2007
> > Reminder Manager, Extended Reminders, Attachment Options
> > http://www.slovaktech.com/products.htm
> >
> >
> > "goran" wrote in message
> > @microsoft.com...
> > > Hi,
> > >
> > > I developed a com Add-in for Outlook 2003. I copied it at user
> > > profile/addins folder. What do I need to do so this add in will load
> > > automatically when Outlook starts?
> > >
> > > Thanks,
> > >
> > > Goran
> >
> >
Back to top
View user's profile Send private message
goran



Joined: 08 Nov 2007
Posts: 18

PostPosted: Mon Feb 18, 2008 9:53 am    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

Ken,
Sorry to bother you again, but this is driving me crazy. My Add-in adds a
dropdowncombo on every mail inspector toolbar. When user selects something
from dropdowncombo, new modal form dialog opens on the top of the inspector.
I used SetwindowPos to set this small dialog on the top and also used
SetForegroundWindow for inspector window. However when I click on the modal
form Inspector window gets minimized and whatever window is under becomes
foreground. When I close modal dialog form, Inspector gets active and it
shows. I get hWnd of the inspector on Inspector activate event and use that
handle to set inspector as foreground window inn modal form activate event.
No matter what I do inspector window flashes and gets minimized when I click
on anything on modal form. I need the inspector to stay in place until modal
form is closed. Any ideas how to fix this? This only happens when email
editor is WordMail and when dll compiled, in design mode everything is OK.

Thanks in advance,

Goran


"Ken Slovak - [MVP - Outlook]" wrote:

> Normally a COM addin gets installed somewhere under Program Files, although
> that's not a requirement. Usually that AddIns folder is used for Exchange
> addins (ECE files written using Extended MAPI code).
>
> Outlook will recognize any COM addin, no matter where it's installed, if
> it's registered correctly. You should not have to browse for the addin, it
> should show up in the COM AddIns dialog if it was registered in the HKCU
> hive of the registry and the addin dll was registered also. If you used a
> VB6 Designer then registering the addin dll will take care of writing the
> keys to the registry in HKCU for you.
>
> How you install is up to you. The P&D Wizard works but it creates large
> installers that include lots of stuff that you really don't need to deploy,
> like the VB6 runtime (msvbvm6.dll) and so on. Those packages also don't give
> you the flexibility that a Windows Installer package provides. You can use
> Windows Installer, a commercial package such as InstallShield or Wise, or
> even an installation bat file. All you really need to do is put the files
> where you want and run regsvr32 on the addin dll.
>
> If you look in the registry at HKCU\Software\Microsoft\Office\Outlook\Addins
> do you see your addin listed? Does it have the correct registry keys as
> listed in that link I provided? If not that's the problem and you should
> read the article at that link.
>
> --
> Ken Slovak
> [MVP - Outlook]
> http://www.slovaktech.com
> Author: Professional Programming Outlook 2007
> Reminder Manager, Extended Reminders, Attachment Options
> http://www.slovaktech.com/products.htm
>
>
> "goran" wrote in message
> @microsoft.com...
> > Ken,
> >
> > I try everything and cannot get my addin to load and show in the toolbar
> > when Outlook starts. I have to do it manually and then is OK. I set
> > 'Initial
> > Load Behavior' to 3. I copied the addin dll to my user profile under
> > Application Data/microsoft/AddInns. When I start the outlook the add in is
> > not there. I have to go manually to Tools/Options/Other/ Advanced
> > options/COM
> > Addins and browse for my dll there and then it will load it. Please tell
> > me
> > if there is another way to install it so it will load and show when
> > Outlook
> > starts. Can I use VB 'PAckage & deployment' tool to package it, or any
> > other
> > tool?
> >
> > Thanks for you help as always.
> >
> > Goran
>
>
Back to top
View user's profile Send private message
Ken Slovak - [MVP - Outlo



Joined: 12 Aug 2007
Posts: 405

PostPosted: Mon Feb 18, 2008 1:44 pm    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

I've never seen or heard of that but it's most likely that you're getting
the hWnd for an incorrect window. Get the hWnd and then use Spy++ to see
what window handle you're actually getting.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"goran" wrote in message @microsoft.com...
> Ken,
> Sorry to bother you again, but this is driving me crazy. My Add-in adds a
> dropdowncombo on every mail inspector toolbar. When user selects something
> from dropdowncombo, new modal form dialog opens on the top of the
> inspector.
> I used SetwindowPos to set this small dialog on the top and also used
> SetForegroundWindow for inspector window. However when I click on the
> modal
> form Inspector window gets minimized and whatever window is under becomes
> foreground. When I close modal dialog form, Inspector gets active and it
> shows. I get hWnd of the inspector on Inspector activate event and use
> that
> handle to set inspector as foreground window inn modal form activate
> event.
> No matter what I do inspector window flashes and gets minimized when I
> click
> on anything on modal form. I need the inspector to stay in place until
> modal
> form is closed. Any ideas how to fix this? This only happens when email
> editor is WordMail and when dll compiled, in design mode everything is OK.
>
> Thanks in advance,
>
> Goran
Back to top
View user's profile Send private message
goran



Joined: 08 Nov 2007
Posts: 18

PostPosted: Mon Feb 18, 2008 4:49 pm    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

I checked in Spy++. I have correct OpusApp window handle.I can't believe it
neither.

I have this on dropdown change event that suppose to launch dialog form:

SetWindowPos(frmDialog.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE Or
SWP_NOMOVE)

frmDialog.Show 1

then on Inspector_Activate I have:

hw = FindWindow("OpusApp", vbNullString) this is where I capture Inspector
Handle

and on dialog form Activate event I try to set Inspector as foreground
window like:

Form1_Activate()
SetForegroundWindow(hw)
end sub

And when I click dialog form Inspector window which is foreground window
gets minimized. I even tried SetActiveWindow(hw), ShowWindow hw,
SW_SHOWACTIVATE etc to keep Inspector from dissapearing. I event put code in
Inspector_Deactivate event to check if DialogForm is visible, If it is I call
inspector.activate method. That does help sometimes but not always. Any ideas
what should I try?

Thanks


"Ken Slovak - [MVP - Outlook]" wrote:

> I've never seen or heard of that but it's most likely that you're getting
> the hWnd for an incorrect window. Get the hWnd and then use Spy++ to see
> what window handle you're actually getting.
>
> --
> Ken Slovak
> [MVP - Outlook]
> http://www.slovaktech.com
> Author: Professional Programming Outlook 2007
> Reminder Manager, Extended Reminders, Attachment Options
> http://www.slovaktech.com/products.htm
>
>
> "goran" wrote in message
> @microsoft.com...
> > Ken,
> > Sorry to bother you again, but this is driving me crazy. My Add-in adds a
> > dropdowncombo on every mail inspector toolbar. When user selects something
> > from dropdowncombo, new modal form dialog opens on the top of the
> > inspector.
> > I used SetwindowPos to set this small dialog on the top and also used
> > SetForegroundWindow for inspector window. However when I click on the
> > modal
> > form Inspector window gets minimized and whatever window is under becomes
> > foreground. When I close modal dialog form, Inspector gets active and it
> > shows. I get hWnd of the inspector on Inspector activate event and use
> > that
> > handle to set inspector as foreground window inn modal form activate
> > event.
> > No matter what I do inspector window flashes and gets minimized when I
> > click
> > on anything on modal form. I need the inspector to stay in place until
> > modal
> > form is closed. Any ideas how to fix this? This only happens when email
> > editor is WordMail and when dll compiled, in design mode everything is OK.
> >
> > Thanks in advance,
> >
> > Goran
>
>
Back to top
View user's profile Send private message
Ken Slovak - [MVP - Outlo



Joined: 12 Aug 2007
Posts: 405

PostPosted: Tue Feb 19, 2008 2:11 pm    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

You need to set the z-order of the Inspector window before you set the form
dialog's z-order. I usually use SetWindowLong to make the Inspector window
parented by the main Outlook window, then I make the dialog window a child
of the Inspector window. I try to avoid SetWindowPos() with HWND_TOPMOST
because if the user clicks in a completely different application the dialog
using HWND_TOPMOST still remains on top and that tends to completely annoy
users.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"goran" wrote in message @microsoft.com...
>I checked in Spy++. I have correct OpusApp window handle.I can't believe it
> neither.
>
> I have this on dropdown change event that suppose to launch dialog form:
>
> SetWindowPos(frmDialog.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE Or
> SWP_NOMOVE)
>
> frmDialog.Show 1
>
> then on Inspector_Activate I have:
>
> hw = FindWindow("OpusApp", vbNullString) this is where I capture Inspector
> Handle
>
> and on dialog form Activate event I try to set Inspector as foreground
> window like:
>
> Form1_Activate()
> SetForegroundWindow(hw)
> end sub
>
> And when I click dialog form Inspector window which is foreground window
> gets minimized. I even tried SetActiveWindow(hw), ShowWindow hw,
> SW_SHOWACTIVATE etc to keep Inspector from dissapearing. I event put code
> in
> Inspector_Deactivate event to check if DialogForm is visible, If it is I
> call
> inspector.activate method. That does help sometimes but not always. Any
> ideas
> what should I try?
>
> Thanks
Back to top
View user's profile Send private message
goran



Joined: 08 Nov 2007
Posts: 18

PostPosted: Wed Feb 20, 2008 9:44 am    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

Thanks Ken.
Do I call open dialog form as modal or not (Form1.show 1).I realize that my
problem is that I need to stop execution in the code in inspector window when
dialog form pops up, and wait for the dialog form to be closed and pass the
value to the dropdown on the inspector and based on passed value continue
execution in the inspector.

"Ken Slovak - [MVP - Outlook]" wrote:

> You need to set the z-order of the Inspector window before you set the form
> dialog's z-order. I usually use SetWindowLong to make the Inspector window
> parented by the main Outlook window, then I make the dialog window a child
> of the Inspector window. I try to avoid SetWindowPos() with HWND_TOPMOST
> because if the user clicks in a completely different application the dialog
> using HWND_TOPMOST still remains on top and that tends to completely annoy
> users.
>
> --
> Ken Slovak
> [MVP - Outlook]
> http://www.slovaktech.com
> Author: Professional Programming Outlook 2007
> Reminder Manager, Extended Reminders, Attachment Options
> http://www.slovaktech.com/products.htm
>
>
> "goran" wrote in message
> @microsoft.com...
> >I checked in Spy++. I have correct OpusApp window handle.I can't believe it
> > neither.
> >
> > I have this on dropdown change event that suppose to launch dialog form:
> >
> > SetWindowPos(frmDialog.hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOSIZE Or
> > SWP_NOMOVE)
> >
> > frmDialog.Show 1
> >
> > then on Inspector_Activate I have:
> >
> > hw = FindWindow("OpusApp", vbNullString) this is where I capture Inspector
> > Handle
> >
> > and on dialog form Activate event I try to set Inspector as foreground
> > window like:
> >
> > Form1_Activate()
> > SetForegroundWindow(hw)
> > end sub
> >
> > And when I click dialog form Inspector window which is foreground window
> > gets minimized. I even tried SetActiveWindow(hw), ShowWindow hw,
> > SW_SHOWACTIVATE etc to keep Inspector from dissapearing. I event put code
> > in
> > Inspector_Deactivate event to check if DialogForm is visible, If it is I
> > call
> > inspector.activate method. That does help sometimes but not always. Any
> > ideas
> > what should I try?
> >
> > Thanks
>
>
Back to top
View user's profile Send private message
Ken Slovak - [MVP - Outlo



Joined: 12 Aug 2007
Posts: 405

PostPosted: Wed Feb 20, 2008 2:34 pm    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

You can try that or you can use a loop that checks for a public boolean in
the dialog that's only set based on some condition. See what works best for
you.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"goran" wrote in message @microsoft.com...
> Thanks Ken.
> Do I call open dialog form as modal or not (Form1.show 1).I realize that
> my
> problem is that I need to stop execution in the code in inspector window
> when
> dialog form pops up, and wait for the dialog form to be closed and pass
> the
> value to the dropdown on the inspector and based on passed value continue
> execution in the inspector.
Back to top
View user's profile Send private message
goran



Joined: 08 Nov 2007
Posts: 18

PostPosted: Wed Feb 20, 2008 12:04 pm    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

thanks. And if I have multiple "OpusApp" windows opened and all of them by
default have the same caption "Untitled Message" when I use FindWindow how do
I get handle from current one as oppose from any that are already opened.

Thanks a lot for your time and help,

Goran

"Ken Slovak - [MVP - Outlook]" wrote:

> You can try that or you can use a loop that checks for a public boolean in
> the dialog that's only set based on some condition. See what works best for
> you.
>
> --
> Ken Slovak
> [MVP - Outlook]
> http://www.slovaktech.com
> Author: Professional Programming Outlook 2007
> Reminder Manager, Extended Reminders, Attachment Options
> http://www.slovaktech.com/products.htm
>
>
> "goran" wrote in message
> @microsoft.com...
> > Thanks Ken.
> > Do I call open dialog form as modal or not (Form1.show 1).I realize that
> > my
> > problem is that I need to stop execution in the code in inspector window
> > when
> > dialog form pops up, and wait for the dialog form to be closed and pass
> > the
> > value to the dropdown on the inspector and based on passed value continue
> > execution in the inspector.
>
>
Back to top
View user's profile Send private message
Ken Slovak - [MVP - Outlo



Joined: 12 Aug 2007
Posts: 405

PostPosted: Wed Feb 20, 2008 4:04 pm    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

Set the caption. Or look at all the handled windows and their hWnd's and see
which window isn't being handled. I usually store the hWnd for the window in
my Inspector wrapper class so I have a reference to it at all times for
things like that.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"goran" wrote in message @microsoft.com...
> thanks. And if I have multiple "OpusApp" windows opened and all of them by
> default have the same caption "Untitled Message" when I use FindWindow how
> do
> I get handle from current one as oppose from any that are already opened.
>
> Thanks a lot for your time and help,
>
> Goran
Back to top
View user's profile Send private message
goran



Joined: 08 Nov 2007
Posts: 18

PostPosted: Wed Feb 20, 2008 2:51 pm    Post subject: Re: Load add-in on Outlook 2003 startup Reply with quote

Ok, but what do you mean by "handled Windows"

"Ken Slovak - [MVP - Outlook]" wrote:

> Set the caption. Or look at all the handled windows and their hWnd's and see
> which window isn't being handled. I usually store the hWnd for the window in
> my Inspector wrapper class so I have a reference to it at all times for
> things like that.
>
> --
> Ken Slovak
> [MVP - Outlook]
> http://www.slovaktech.com
> Author: Professional Programming Outlook 2007
> Reminder Manager, Extended Reminders, Attachment Options
> http://www.slovaktech.com/products.htm
>
>
> "goran" wrote in message
> @microsoft.com...
> > thanks. And if I have multiple "OpusApp" windows opened and all of them by
> > default have the same caption "Untitled Message" when I use FindWindow how
> > do
> > I get handle from current one as oppose from any that are already opened.
> >
> > Thanks a lot for your time and help,
> >
> > Goran
>
>

Back to top
View user's profile Send private message
Display posts from previous:   
Related Topics:
Addin will not load in Vista/Outlook 2007 Hello. I have an addin that works fine on XP/Outlook 2007, but once we install it on Vista, it won't load in Outlook 2007. Looking in the Tools --> Trust Center --> Addins, etc., I see the generic message "Not loaded. A runtime error occurred during th

VS2008 OL2007 add-in with ClickOnce : Does not load I have created a one-liner vanilla hello-world C# Outlook add-in using VS2008 and published it using default settings. Copied everything in \Publish folder to CD and installed on several machines (none with VS2008). In all cases, the setup downloads .Net

How to set the active printer for Outlook 2003 Hi, I have to write an Outlook 2003 COM add-in that prints the active item to a perticular printer. I have used a toolbar button for this purpose. Clicking the button will direct the print to my printer. This is my idea. I searched through the Outlook obj

Outlook 2003 Advanced Search and display results Hi, I'm trying to use outlook 2003 plug in application method to search on multiple public, inbox with sub folders and than display the results on outlook windows. I encountered several problems in the process: 1) display: Enter the search

Outlook und Outlook Connector? Fehler! Hallo zusammen Ich habe Office 2003 (ohne Outlook) und Office 2007 (mit Outlook) installiert. Nun wollte ich heute den Outlook Connector installieren. Bei der Installation ergaben sich eigentlich keine Probleme. Ich kann jetzt nur kein Konto hinzufügen. W
Post new topic   Reply to topic    msoutlook.org Forum Index -> Outlook Programs Add-Ins All times are GMT
Goto page 1, 2  Next
Page 1 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum


Powered by phpBB © 2001, 2005 phpBB Group