Hello everyone, please help me to solve this problem
In my code insert from row 1 I want to insert from row 4
SqlConnection cnn;
string sql = null;
string data = null;
int i = 3;
int j = 0;
Excel.Application xlApp;
Excel.Workbook xlWorkBook;
Excel.Worksheet xlWorkSheet;
object misValue = System.Reflection.Missing.Value;
xlApp = new Excel.ApplicationClass();
xlApp.Visible = true;
string dir = System.IO.Directory.GetCurrentDirectory() + "\\cons.xls";
xlWorkBook = xlApp.Workbooks.Open(dir, 0, true, 5, "", "", true, Microsoft.Office.Interop.Excel.XlPlatform.xlWindows, "\t", false, false, 0, true, 1, 0);
xlWorkSheet = (Excel.Worksheet)xlWorkBook.Worksheets.get_Item(1);
cnn = new SqlConnection(ConnectionClass.conne ...
Go to the complete details ...