Add to Chrome
✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Виберіть порядок програмування експорту в таблицю Word із компоненти dataGridView1 у Visual Studio?
Word._Document document = new Word.Document();
using Microsoft.Office.Interop.Word;
document.Tables[1].Cell(2,2).Range.Text = dataGridView1[1,1].Value;
Word._Application application = new Word.Application();
Word.Table table = document.Tables.Add(currentRange, numRows, numColumns, ref _missingObj, ref _missingObj);
Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!