How can i check, if this saving command was successful?
Dim objExcel As New Microsoft.Office.Interop.Excel.Application
Public Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
objExcel.ActiveWorkbook.Save()
End Sub
For example, while the program is working in a remote excel workbook, and the connection goes down.
Made a workaround. Before update, the last Excel row number is stored, then after update, i store that number too.
This workaround makes it for me.