D
denton
Excel.Worksheet w3 = (Excel.Worksheet)this.Worksheets.get_Item(3);
Excel.Range r1 = w3.get_Range("A1", Type.Missing);
r1.Value2 = "a1";
this.Save();
Application.Quit();
When the program is done, my workbook in VS 2005 is not saved. Please help
or point in right direction. Learning VSTO is difficult since it is unstable
and there are few resources for help.
Excel.Range r1 = w3.get_Range("A1", Type.Missing);
r1.Value2 = "a1";
this.Save();
Application.Quit();
When the program is done, my workbook in VS 2005 is not saved. Please help
or point in right direction. Learning VSTO is difficult since it is unstable
and there are few resources for help.