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 » Microsoft Outlook Email Newsgroups » Add-ins for Outlook
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

setup project: how to add a custom form and make the form as default



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old February 27th 09, 08:23 PM posted to microsoft.public.outlook.program_addins
Jason
external usenet poster
 
Posts: 41
Default setup project: how to add a custom form and make the form as default

How do I deploy a custom form through Outlook add-in setup? I wrote custom
code for windows service installtion but I don't know this add-in thing.

I know how to make the form as default by setting registry. Can I add those
registry values to the existing entries on the setup project registry tab?


  #2  
Old March 1st 09, 09:10 PM posted to microsoft.public.outlook.program_addins
Jason
external usenet poster
 
Posts: 41
Default setup project: how to add a custom form and make the form as default

I figured out the first question. Now I can publish a form from msi.However
it has problem, the outlook.exe does not terminate, even after
System.Runtime.InteropServices.Marshal.ReleaseComO bject(app).


Still have problem in default form setting. I'll create a new thread.

"Jason" wrote in message
...
How do I deploy a custom form through Outlook add-in setup? I wrote custom
code for windows service installtion but I don't know this add-in thing.

I know how to make the form as default by setting registry. Can I add
those registry values to the existing entries on the setup project
registry tab?



  #3  
Old March 2nd 09, 04:54 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default setup project: how to add a custom form and make the form as default

Are you creating an Outlook process? If so and Outlook wasn't running before
you did that you need to use app.Quit() to shut down Outlook before
releasing the app object. Make sure all of your other Outlook objects are
released before you call Quit(), then release app.

--
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


"Jason" wrote in message
...
I figured out the first question. Now I can publish a form from msi.However
it has problem, the outlook.exe does not terminate, even after
System.Runtime.InteropServices.Marshal.ReleaseCom Object(app).


Still have problem in default form setting. I'll create a new thread.

"Jason" wrote in message
...
How do I deploy a custom form through Outlook add-in setup? I wrote
custom code for windows service installtion but I don't know this add-in
thing.

I know how to make the form as default by setting registry. Can I add
those registry values to the existing entries on the setup project
registry tab?




  #4  
Old March 2nd 09, 06:32 PM posted to microsoft.public.outlook.program_addins
Jason
external usenet poster
 
Posts: 41
Default setup project: how to add a custom form and make the form as default

Did not work. All variables were set to null before app.QUit() was issued. I
even used scope

Outlook.Application app = new Outlook.Application();

{
...
}

app.Quit();

System.Runtime.InteropServices.Marshal.ReleaseComO bject(app);


May be MSI package and installer class work differently.

Anyway I gave up. I moved the publish function to the setup form inside
add-in. User has to provide some info before they can use the add-in.


"Ken Slovak - [MVP - Outlook]" wrote in message
...
Are you creating an Outlook process? If so and Outlook wasn't running
before you did that you need to use app.Quit() to shut down Outlook before
releasing the app object. Make sure all of your other Outlook objects are
released before you call Quit(), then release app.

--
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


"Jason" wrote in message
...
I figured out the first question. Now I can publish a form from
msi.However it has problem, the outlook.exe does not terminate, even after
System.Runtime.InteropServices.Marshal.ReleaseCo mObject(app).


Still have problem in default form setting. I'll create a new thread.

"Jason" wrote in message
...
How do I deploy a custom form through Outlook add-in setup? I wrote
custom code for windows service installtion but I don't know this add-in
thing.

I know how to make the form as default by setting registry. Can I add
those registry values to the existing entries on the setup project
registry tab?






  #5  
Old March 2nd 09, 07:03 PM posted to microsoft.public.outlook.program_addins
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default setup project: how to add a custom form and make the form as default

In managed code setting an object to null does not necessarily release the
RCW, that's only after the GC runs at some undetermined time. To fully
release objects call Marshal.ReleaseComObject() on the object and if
necessary call it in a loop until the return int is 0.

FWIW, if I have an addin I do my form publishing in the addin code on first
run and never during installation.

--
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


"Jason" wrote in message
...
Did not work. All variables were set to null before app.QUit() was issued.
I even used scope

Outlook.Application app = new Outlook.Application();

{
...
}

app.Quit();

System.Runtime.InteropServices.Marshal.ReleaseComO bject(app);


May be MSI package and installer class work differently.

Anyway I gave up. I moved the publish function to the setup form inside
add-in. User has to provide some info before they can use the add-in.


  #6  
Old March 3rd 09, 06:57 AM posted to microsoft.public.outlook.program_addins
Jason
external usenet poster
 
Posts: 41
Default setup project: how to add a custom form and make the form as default

Thought about that but don't want to have that kind of trouble. Do the
publish in the first run or until it is needed is better idea.

"Ken Slovak - [MVP - Outlook]" wrote in message
...
In managed code setting an object to null does not necessarily release the
RCW, that's only after the GC runs at some undetermined time. To fully
release objects call Marshal.ReleaseComObject() on the object and if
necessary call it in a loop until the return int is 0.

FWIW, if I have an addin I do my form publishing in the addin code on
first run and never during installation.

--
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


"Jason" wrote in message
...
Did not work. All variables were set to null before app.QUit() was
issued. I even used scope

Outlook.Application app = new Outlook.Application();

{
...
}

app.Quit();

System.Runtime.InteropServices.Marshal.ReleaseComO bject(app);


May be MSI package and installer class work differently.

Anyway I gave up. I moved the publish function to the setup form inside
add-in. User has to provide some info before they can use the add-in.




 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Getting custom appointment form to save to a calendar like the default appt form cmonroe21 via OfficeKB.com Outlook - Using Forms 0 February 26th 09 10:31 PM
Make custom post form default sd[_2_] Outlook - Using Forms 4 September 26th 08 06:46 AM
How to set default email message form to my custom form? Kenneth Outlook - Using Forms 3 July 17th 08 06:58 PM
2002 outlook, how do i make my custom contact form my default Linda Outlook - Using Contacts 1 June 23rd 06 12:56 AM
Is it possible to open the default Contact form with the Activities tab activated from a custom form? VSTO 2005, Outlook 2003 David Webb Outlook and VBA 1 June 20th 06 09:59 PM


All times are GMT +1. The time now is 06:30 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.