I'm using the "TextWriter sw" to send to Word by turning the textboxes into doc the problem that I need some formatting. How do I set paragraph size, line spacing and etc ... The code I am using to send to Word is similar to the one below:
String strtxt22 = textBox7.Text;
String strtxt23 = textBox8.Text;
TextWriter sw = new StreamWriter(@"c:\Gold Business - Cadastro Funcionário.doc");
sw.WriteLine(strtxt22);
sw.WriteLine(strtxt23);