B2026-046-RO-symbols-and-Annotations #768

Merged
jjenko merged 2 commits from B2026-046-RO-symbols-and-Annotations into Development 2026-05-13 13:43:13 -04:00
Showing only changes of commit 4b5b06210c - Show all commits
@@ -1,16 +1,17 @@
using JR.Utils.GUI.Forms;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Data;
using System.Diagnostics;
using System.Drawing;
using System.Text;
using System.Text.RegularExpressions;
using System.Windows.Forms;
using System.Xml;
using VEPROMS.CSLA.Library;
using Volian.Base.Library;
using Volian.Pipe.Library;
using System.Xml;
using System.Diagnostics;
using JR.Utils.GUI.Forms;
namespace Volian.Controls.Library
{
@@ -220,7 +221,11 @@ namespace Volian.Controls.Library
{
if (!DesignMode) // B2019-043 need to check if we are just saving changes to the user interface
{
rtxbComment.Text = value;
//rtxbComment.Text = value;
mschill marked this conversation as resolved
Review

would remove commented out code

would remove commented out code
if (value != null)
{
rtxbComment.Text = Regex.Replace(value, @"\\u([0-9]{1,4})\?", m => Convert.ToChar(int.Parse(m.Groups[1].Value)).ToString());
}
if (rtxbComment.Text != string.Empty)
rtxbComment.SelectionStart = rtxbComment.TextLength; // position cursor to end of text
}