I'm 2-weeks young C# programmer in the middle of simple method, that saves my DataGridView into an excel document (1 sheet only) and also adds a macro with asigned macro-button, which looks like this :
public void SaveFile(string filePath)
{
Microsoft.Office.Interop.Excel.ApplicationClass ExcelApp = new Microsoft.Office.Interop.Excel.ApplicationClass();
ExcelApp.Application.Workbooks.Add(Type.Missing);
//Change Workbook-properties.
ExcelApp.Columns.ColumnWidth = 20;
// Storing header part in Excel.
for (int i = 1; i < gridData.Columns.Count + 1; i++)
{
ExcelApp.Cells[1, i] = gridData.Columns[i - 1].HeaderText;
}
//Storing Each row and column value to excel sheet
for (int row = 0; row < gridData.Rows.Count; row++)
{
gridData.Rows[row].Cells[0].Value = "Makro";
for (int column = 0; column < gridData.Columns.Count; column++)
{
ExcelApp.Cells[row + 2, column + 1] = gridData.Rows[row].Cells[column].Value.ToString();
}
}
ExcelApp.ActiveWorkbook.SaveCopyAs(filePath);
ExcelApp.ActiveWorkbook.Saved = true;
ExcelApp.Quit();
}
As you may see, I only implemented DataGridView export. I also need to save a macro and a macro-button asigned to it, but I have no idea how to do it, so I'll be much obliged for every and any help on this.
Big thanks in advance.
EDIT: Thanks to Joel I could wear my problem in proper words and search again for the solution. I think that this may be helpful , but as a beginner I'm not really sure and I'll be thankful if you correct me or give a tip or two what Ishould look for.
