P
pkelley
My setup:
Windows XP, Microsoft Visual Studio 2005, using VSTO SE, developing in C#.
Question background:
With regard to a single FormRegion, Microsoft instructs the following:
Replace the definition of the FormRegionHookup class with the following
code. This code implements the
Microsoft.Office.Interop.Outlook.FormRegionStartup interface, and applies the
ComVisibleAttribute, GuidAttribute, ProgIdAttribute, and
ClassInterfaceAttribute attributes to the FormRegionHookup class.
[ComVisible(true),
Guid("88F7BFBE-7666-4a0c-BCFD-2740E6625E04"),
ProgId("FormRegionAddIn.FormRegionHookup"),
ClassInterface(ClassInterfaceType.AutoDual)]
public class FormRegionHookup : Outlook.FormRegionStartup
Question:
If I have 2 FormRegions that I have created and I have 2 classes where each
class extends the Outlook.FormRegionStartup interface.
1. Do I use the same GUID for both classes?
Guid("88F7BFBE-7666-4a0c-BCFD-2740E6625E04")
My gut answer to this question is "Yes", but I just want to make sure.
Windows XP, Microsoft Visual Studio 2005, using VSTO SE, developing in C#.
Question background:
With regard to a single FormRegion, Microsoft instructs the following:
Replace the definition of the FormRegionHookup class with the following
code. This code implements the
Microsoft.Office.Interop.Outlook.FormRegionStartup interface, and applies the
ComVisibleAttribute, GuidAttribute, ProgIdAttribute, and
ClassInterfaceAttribute attributes to the FormRegionHookup class.
[ComVisible(true),
Guid("88F7BFBE-7666-4a0c-BCFD-2740E6625E04"),
ProgId("FormRegionAddIn.FormRegionHookup"),
ClassInterface(ClassInterfaceType.AutoDual)]
public class FormRegionHookup : Outlook.FormRegionStartup
Question:
If I have 2 FormRegions that I have created and I have 2 classes where each
class extends the Outlook.FormRegionStartup interface.
1. Do I use the same GUID for both classes?
Guid("88F7BFBE-7666-4a0c-BCFD-2740E6625E04")
My gut answer to this question is "Yes", but I just want to make sure.