hello all, I created a custom Ribbon for word 2007 using VS 2008. I have 4 editboxes on that ribbon in which user is going to enter some data. I would like to attach this data to the same word file and save it, so that when i open this document i can see the contents with the user entered values in particular EditBoxes. Can anyone suggest me how to do this ??????????
mandar777
Posts
-
Attach User Entered Data with word Document while saving -
How to Save word file using SaveDialogBox and File Streami would like to save the word file on onclick event of my Button which is in Ribbon .....i don't want to use office inbuilt saving option.....
-
How to Save word file using SaveDialogBox and File StreamHello all, I would like to save current word file to My Documents when user clicks on Button which is Placed in Ribbon ???? Can anybody guide me how to do it ???
-
Create a call Back to button control in RibbonCan any one please help me , i have to finish it today....
-
Create a call Back to button control in RibbonHello all, I want to create an Word add-In in Visual studio. I used word Add-In feature for the same, Now i added the ribbon file to it which has a new tab and a button control. I would like to show message on click of this button control. I read the full article about this in MSDN, and did following steps: Exported the ribbon to xml Wrote the OnAction attribute to the button control in xml But still it's not working. I wrote the following code in Ribbon1.cs:
private void button1_Click(object sender, RibbonControlEventArgs e)
{
MessageBox.Show("Hello");
}Tell me how to call this method ? how to write the same in Ribbon call Back region......??? :^)
-
Office Ribbon functionalityhello, I also did the same code but no message box is appearing on my button click in Ribbon, can any one tell me how to code call back method following is the code of my method which i wrote in Ribbon1.cs :
private void button1_Click(object sender, RibbonControlEventArgs e)
{
MessageBox.Show("Hello");
}i would like to call this so can you tell me how to do it, i exported the ribbon to Xml and also added the "OnAction" attribute to button control in xml. But still not working........???? :^)