J
JJ
Hello NG
Using Visual Studio Team System 2008 Development Edition i am creating a
VSTO Addin for Outlook 2007
The initial code looks like this:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Outlook = Microsoft.Office.Interop.Outlook;
using Office = Microsoft.Office.Core;
namespace OLMailJournalize2007
{
public partial class Journalize
{
Outlook.NameSpace nameSpace;
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
}
private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
{
}
#region VSTO generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InternalStartup()
{
this.Startup += new System.EventHandler(ThisAddIn_Startup);
this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
}
#endregion
}
}
Where do i add my property page. I have created a similary addin for Outlook
2003 where i could use the this.OptionPageAdd += bla... and then add the
property page in that method. but this way has change for OL 2007.
Can any one please guide me in the right direction.
Kind regards
Johnny E. Jensen
Using Visual Studio Team System 2008 Development Edition i am creating a
VSTO Addin for Outlook 2007
The initial code looks like this:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml.Linq;
using Outlook = Microsoft.Office.Interop.Outlook;
using Office = Microsoft.Office.Core;
namespace OLMailJournalize2007
{
public partial class Journalize
{
Outlook.NameSpace nameSpace;
private void ThisAddIn_Startup(object sender, System.EventArgs e)
{
}
private void ThisAddIn_Shutdown(object sender, System.EventArgs e)
{
}
#region VSTO generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InternalStartup()
{
this.Startup += new System.EventHandler(ThisAddIn_Startup);
this.Shutdown += new System.EventHandler(ThisAddIn_Shutdown);
}
#endregion
}
}
Where do i add my property page. I have created a similary addin for Outlook
2003 where i could use the this.OptionPageAdd += bla... and then add the
property page in that method. but this way has change for OL 2007.
Can any one please guide me in the right direction.
Kind regards
Johnny E. Jensen