Outlook Banter

Outlook Banter (http://www.outlookbanter.com/)
-   Add-ins for Outlook (http://www.outlookbanter.com/add-ins-outlook/)
-   -   programmatically Disable addin (http://www.outlookbanter.com/add-ins-outlook/67408-programmatically-disable-addin.html)

shubhangi February 22nd 08 01:38 PM

programmatically Disable addin
 
hello
I want to disable my addin if certain condition is not met(licence etc.).How
to do this programmatically?I'm using VSTO SE for Outlook 2007.Besides this
I don't want to show
form regions if that condition is not met.If the condition is met then only
my addin is required to
enable & form regions to be shown.Can this be done programmatically?
thanks



Ken Slovak - [MVP - Outlook] February 22nd 08 02:07 PM

programmatically Disable addin
 
Check your license information and if it fails then call to whatever code
you have running when you get the Shutdown() event. You might have to hack
the registry also to remove any form region information.

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


"shubhangi" wrote in message
...
hello
I want to disable my addin if certain condition is not met(licence
etc.).How to do this programmatically?I'm using VSTO SE for Outlook
2007.Besides this I don't want to show
form regions if that condition is not met.If the condition is met then
only my addin is required to
enable & form regions to be shown.Can this be done programmatically?
thanks



shubhangi March 3rd 08 01:42 PM

programmatically Disable addin
 
Thanks Ken.I did
1.In Application_startup I checked licence and added
Application.COMAddIns.Item("MyAddIn").Connect=Fals e.
2.For not displaying form regions -
Protected Overrides Function RequestService(ByVal serviceGuid As Guid)
As Object
If serviceGuid =
GetType(Microsoft.Office.Interop.Outlook.FormRegio nStartup).GUID Then
If gblbLicence = False Then Return Nothing
ObjFormRegion = New FormRegionHookupVB(Me.Application)
'FormRegionHookupVB implements formregionstartup interface
Return ObjFormRegion
End If
Return MyBase.RequestService(serviceGuid)
End Function
will it have any problem with form region?
Thanks again


"Ken Slovak - [MVP - Outlook]" wrote in message
...
Check your license information and if it fails then call to whatever code
you have running when you get the Shutdown() event. You might have to hack
the registry also to remove any form region information.

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


"shubhangi" wrote in message
...
hello
I want to disable my addin if certain condition is not met(licence
etc.).How to do this programmatically?I'm using VSTO SE for Outlook
2007.Besides this I don't want to show
form regions if that condition is not met.If the condition is met then
only my addin is required to
enable & form regions to be shown.Can this be done programmatically?
thanks





Ken Slovak - [MVP - Outlook] March 3rd 08 02:04 PM

programmatically Disable addin
 
That should be OK, but be aware that if the user opens an item with the
message class specified in the registry for your form region that your addin
will become enabled and start from the Startup() event all over again. The
only way to prevent that would be to hack the registry and delete your entry
for the form region.

I'd probably write out the form region information to the registry if the
license check passed and delete it if the license test failed.

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


"shubhangi" wrote in message
...
Thanks Ken.I did
1.In Application_startup I checked licence and added
Application.COMAddIns.Item("MyAddIn").Connect=Fals e.
2.For not displaying form regions -
Protected Overrides Function RequestService(ByVal serviceGuid As Guid) As
Object
If serviceGuid =
GetType(Microsoft.Office.Interop.Outlook.FormRegio nStartup).GUID Then
If gblbLicence = False Then Return Nothing
ObjFormRegion = New FormRegionHookupVB(Me.Application)
'FormRegionHookupVB implements formregionstartup interface
Return ObjFormRegion
End If
Return MyBase.RequestService(serviceGuid)
End Function
will it have any problem with form region?
Thanks again



shubhangi March 4th 08 01:41 PM

programmatically Disable addin
 
Thanks again
You are right,the loadbehavior resets again to 3 though
Application.COMAddIns.Item("MyAddIn").Connect=Fals e.
is given in Application_Startup as Form region related entries are present
in registry.
I removed the form region related entries from registry if licence
evaluation failed & added the
same if licence evaluation succeeded as per ur suggestion.Now the addin
remains disabled & form region also not shown.
Thanks once again!

"Ken Slovak - [MVP - Outlook]" wrote in message
...
That should be OK, but be aware that if the user opens an item with the
message class specified in the registry for your form region that your
addin will become enabled and start from the Startup() event all over
again. The only way to prevent that would be to hack the registry and
delete your entry for the form region.

I'd probably write out the form region information to the registry if the
license check passed and delete it if the license test failed.

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


"shubhangi" wrote in message
...
Thanks Ken.I did
1.In Application_startup I checked licence and added
Application.COMAddIns.Item("MyAddIn").Connect=Fals e.
2.For not displaying form regions -
Protected Overrides Function RequestService(ByVal serviceGuid As Guid) As
Object
If serviceGuid =
GetType(Microsoft.Office.Interop.Outlook.FormRegio nStartup).GUID Then
If gblbLicence = False Then Return Nothing
ObjFormRegion = New FormRegionHookupVB(Me.Application)
'FormRegionHookupVB implements formregionstartup interface
Return ObjFormRegion
End If
Return MyBase.RequestService(serviceGuid)
End Function
will it have any problem with form region?
Thanks again






All times are GMT +1. The time now is 12:31 PM.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com