Answered by:
word 2003 addin

Question
-
hi
i am newly using visual studio new project office select 2003
and in that windows 2003 add in selecting the type of project
i got like this code
public partial class ThisAddIn
{
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
}
i want where i have to write the code
can u plz say some sample code add two numbers like tat ex code can u help me
- Moved by Martin_Xie Friday, December 30, 2011 10:43 AM Move it to VSTO Forum for better support. (From:Visual C# General)
Thursday, December 29, 2011 7:54 PM
Answers
-
Hi John Paul
There's an entire section on MSDN devoted to VSTO documentation. Since you mention Word 2003 I'm going to assume you're working with VS 2008. Here's the link to the start page for Add-ins, but there's a lot more information surrounding that with important information about the VSTO technology
http://msdn.microsoft.com/en-us/library/bb157876(VS.90).aspx
Cindy Meister, VSTO/Word MVP- Marked as answer by 许阳(无锡) Tuesday, January 3, 2012 5:56 AM
Saturday, December 31, 2011 8:00 AM
All replies
-
Your best bet is to do some web searches on Word add-ins. I'm sure you can find plenty of tutorials and startup guides.
- Proposed as answer by Dharamveer Sharma Friday, January 9, 2015 6:54 PM
Thursday, December 29, 2011 8:19 PM -
- Proposed as answer by Dharamveer Sharma Friday, January 9, 2015 6:54 PM
Friday, December 30, 2011 2:27 AM -
John,
Did you know that there is a special forum for Office tools for visual studio
http://social.msdn.microsoft.com/Forums/en-US/vsto
Success
Cor- Proposed as answer by Dharamveer Sharma Friday, January 9, 2015 6:54 PM
Friday, December 30, 2011 6:15 AM -
Hi John Paul
There's an entire section on MSDN devoted to VSTO documentation. Since you mention Word 2003 I'm going to assume you're working with VS 2008. Here's the link to the start page for Add-ins, but there's a lot more information surrounding that with important information about the VSTO technology
http://msdn.microsoft.com/en-us/library/bb157876(VS.90).aspx
Cindy Meister, VSTO/Word MVP- Marked as answer by 许阳(无锡) Tuesday, January 3, 2012 5:56 AM
Saturday, December 31, 2011 8:00 AM