B2019-030 Use FlexableMesageBox instead of MessageBox so that it is always on top.
This commit is contained in:
@@ -7,6 +7,7 @@ using System.Text;
|
||||
using System.Windows.Forms;
|
||||
using VEPROMS.CSLA.Library;
|
||||
using Volian.Base.Library;
|
||||
using JR.Utils.GUI.Forms;
|
||||
|
||||
namespace Volian.Controls.Library
|
||||
{
|
||||
@@ -251,9 +252,9 @@ namespace Volian.Controls.Library
|
||||
if (!findingbookmarks)
|
||||
{
|
||||
if (cbxReverse.Checked)
|
||||
MessageBox.Show(this, "Not Found - From Here to Beginning of Section", "Find/Replace");
|
||||
FlexibleMessageBox.Show(this, "Not Found - From Here to Beginning of Section", "Find/Replace");
|
||||
else
|
||||
MessageBox.Show(this, "Not Found - From Here to End of Section", "Find/Replace");
|
||||
FlexibleMessageBox.Show(this, "Not Found - From Here to End of Section", "Find/Replace");
|
||||
}
|
||||
FoundIt = false;
|
||||
return;
|
||||
@@ -413,7 +414,7 @@ namespace Volian.Controls.Library
|
||||
SymbolList sl = fmtdata.SymbolList;
|
||||
if (sl == null || sl.Count <= 0)
|
||||
{
|
||||
MessageBox.Show(this, "No symbols are available, check with administrator");
|
||||
FlexibleMessageBox.Show(this, "No symbols are available, check with administrator");
|
||||
return;
|
||||
}
|
||||
foreach (Symbol sym in sl)
|
||||
|
Reference in New Issue
Block a user