Hello everyone
I can export texblock.text and label.text to word. But there is no styling found back in the word document
For example the background-color won't export. I use this as a conformation document.
How can you also export the style of the form and can you export a table (make a table when the form is exported to word? in thios case 1 row 2 columns)
code for export works fine
//Save to document
String strtxt = textBox3.Text + label5.Text;
TextWriter sw = new StreamWriter(@"C:\Users\filename");
sw.WriteLine(strtxt);
sw.Close();
Thanks everyone