C2022-003-Change-Textboxes-to-RTF-3
This commit is contained in:
@@ -309,7 +309,7 @@ using System.Text.RegularExpressions;
|
||||
|
||||
namespace ROEditor
|
||||
{
|
||||
/// <summary>
|
||||
/// <summary>
|
||||
/// Summary description for Form1.
|
||||
/// </summary>
|
||||
///
|
||||
@@ -358,7 +358,7 @@ namespace ROEditor
|
||||
public static string[] PCChildren; //C2021-026 list of Parent/Child Children
|
||||
//private StepTabRibbon _MyStepTabRibbon;
|
||||
|
||||
public roRichTextBox CurrentTextBox
|
||||
public roRichTextBox CurrentTextBox
|
||||
{
|
||||
get { return _CurrentTextBox; }
|
||||
set { _CurrentTextBox = value; }
|
||||
@@ -395,7 +395,7 @@ namespace ROEditor
|
||||
set
|
||||
{
|
||||
_duplicate_active = value;
|
||||
// C2015-017 hide the label indicating user is working with a duplicate of an exiting RO
|
||||
// C2015-017 hide the label indicating user is working with a duplicate of an exiting RO
|
||||
lblDuplicateRO.Visible = value;
|
||||
}
|
||||
}
|
||||
@@ -417,9 +417,9 @@ namespace ROEditor
|
||||
//
|
||||
InitializeComponent();
|
||||
getSymbols(); // RO Editor add symbols C2022 - 003
|
||||
// B2019-082 set the date format on the VEPROMS.exe thread to U.S. for i/o of a date string
|
||||
// this is to correct an issue for a UAE customer who could not open some procedures due to the desktop date setting using the "DD/MM/YYYY" instead of the "MM/DD/YYYY" format
|
||||
// NOTE: not doing the "Using System.Threading;" statement at beginning of file because it conflicts with the declaration of the "Timer" variable
|
||||
// B2019-082 set the date format on the VEPROMS.exe thread to U.S. for i/o of a date string
|
||||
// this is to correct an issue for a UAE customer who could not open some procedures due to the desktop date setting using the "DD/MM/YYYY" instead of the "MM/DD/YYYY" format
|
||||
// NOTE: not doing the "Using System.Threading;" statement at beginning of file because it conflicts with the declaration of the "Timer" variable
|
||||
System.Threading.Thread.CurrentThread.CurrentCulture = new System.Globalization.CultureInfo("en-US");
|
||||
|
||||
// The data path the was passed in.
|
||||
@@ -703,7 +703,7 @@ namespace ROEditor
|
||||
{
|
||||
VlnXmlElement curelemforNodeIter = (VlnXmlElement)nodeIter.Tag;
|
||||
if (curelemforNodeIter.Name != "RO_Root" && curelemforNodeIter.Name != "vlnGroup")
|
||||
{
|
||||
{
|
||||
nodeIter.BackColor = MULTISELECTCOLOR;
|
||||
ROsSelectedforMultiMove.Add(nodeIter);
|
||||
}
|
||||
@@ -2070,7 +2070,7 @@ namespace ROEditor
|
||||
PCChildren = args[0].Substring(3).Split(','); //C2021-026 list of Parent/Child Children
|
||||
else
|
||||
ConnectionPath = args[0];
|
||||
// Directory.SetCurrentDirectory(ConnectionPath);
|
||||
// Directory.SetCurrentDirectory(ConnectionPath);
|
||||
}
|
||||
if (ConnectionPath == null) // RO Path was not passed in, find ROPATH
|
||||
{
|
||||
@@ -2326,7 +2326,7 @@ namespace ROEditor
|
||||
|
||||
testParadoxFile += "ROMASTER.DB"; // Paradox file
|
||||
testAccessFile += "ROMaster.mdb"; // Access file
|
||||
// if (File.Exists(testParadoxFile))
|
||||
// if (File.Exists(testParadoxFile))
|
||||
if (File.Exists(testParadoxFile) && !(File.Exists(testAccessFile) || UsingSQLServer(ROdir)))
|
||||
{
|
||||
// Display a message to the user that the data needs converted
|
||||
@@ -2422,7 +2422,7 @@ namespace ROEditor
|
||||
{
|
||||
roListView_ClearListDisplay();
|
||||
bool didcleanup = false; // flags whether we needed to remove elements from trees
|
||||
// to match xml data to tree.
|
||||
// to match xml data to tree.
|
||||
VlnXmlElement curelem = (VlnXmlElement)roTreeView.SelectedNode.Tag;
|
||||
LoadKids(roTreeView.SelectedNode);
|
||||
if (curelem.Name == "vlnGroup")
|
||||
|
||||
Reference in New Issue
Block a user