Hi,
The SeachAndReplaceDialog returns an error it the txtFind is blank and the user click OK
Please change the code.
This way it works fine, if you want add a message box.
```
private void BtnOkClick(object sender, EventArgs e)
{
if ((txtFind.Text != ""))
{
_find = txtFind.Text;
_replace = txtReplace.Text;
DialogResult = DialogResult.OK;
}
else
{
return;
}
}
```
Comments: Resolved with changeset 73842: - Fixed misspelling in SearchAndReplaceDialog class name
- Fixed issue #23928
- Minor gui improvements in TableEditorControl
The SeachAndReplaceDialog returns an error it the txtFind is blank and the user click OK
Please change the code.
This way it works fine, if you want add a message box.
```
private void BtnOkClick(object sender, EventArgs e)
{
if ((txtFind.Text != ""))
{
_find = txtFind.Text;
_replace = txtReplace.Text;
DialogResult = DialogResult.OK;
}
else
{
return;
}
}
```
Comments: Resolved with changeset 73842: - Fixed misspelling in SearchAndReplaceDialog class name
- Fixed issue #23928
- Minor gui improvements in TableEditorControl