/// <summary> /// Searches through the worksheet for a value, starting at the given row. /// If the value is found, the row is selected. </summary> /// <param name="row"> the row to start searching from. </param> public virtual void searchLeftWorksheet(int row) { string searchFor = null; int col = 0; searchFor = __searchID.getText().Trim(); int index = __worksheetL.find(searchFor, col, row, JWorksheet.FIND_EQUAL_TO | JWorksheet.FIND_CONTAINS | JWorksheet.FIND_CASE_INSENSITIVE | JWorksheet.FIND_WRAPAROUND); if (index != -1) { selectLeftTableIndex(index, true, true); } }
/// <summary> /// Searches through the worksheet for a value, starting at the given row. /// If the value is found, the row is selected. </summary> /// <param name="row"> the row to start searching from. </param> public virtual void searchWorksheet(int row) { string searchFor = null; int col = -1; if (__searchIDJRadioButton.isSelected()) { searchFor = __searchID.getText().Trim(); col = 1; } else { searchFor = __searchName.getText().Trim(); col = 2; } int index = __worksheet.find(searchFor, col, row, JWorksheet.FIND_EQUAL_TO | JWorksheet.FIND_CONTAINS | JWorksheet.FIND_CASE_INSENSITIVE | JWorksheet.FIND_WRAPAROUND); if (index != -1) { selectTableIndex(index); } }