Кто-нибудь знает, как выбрать и установить элемент ComboBox
в документе Word (с Interop.Word
)?
public void txt()
{
string template = Path.GetDirectoryName(Application.ExecutablePath).Trim() + "\\template.docx";
Word.Application wordApp = new Word.Application();
wordApp.Visible = true;
Word.Document document =
wordApp.Documents.OpenNoRepairDialog(template);
document.Activate();
Word.Table table = document.Tables[1];
table.Cell(2, 2).Range.Text = textBox1.Text;
}