Esempio n. 1
0
 private void btnLoadCurrentTestCase_Click(object sender, EventArgs e)
 {
     // Load current test case list from selected file
     Cursor = Cursors.WaitCursor;
     try
     {
         txtTestCase.Text = cldt.GetCurrentTestCase(txtExcelPath.Text, cbxSheet.Text, txtTestCaseColumnName.Text, Convert.ToInt32(txtFillableRowStartIndex.Text));
     }
     catch (Exception ex)
     {
         MessageBox.Show(ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
     Cursor = Cursors.Arrow;
 }