From ded6f18dd5e902ba1627f84f457c8509f35fffed Mon Sep 17 00:00:00 2001 From: Paul Larsen Date: Wed, 25 Feb 2026 15:27:25 -0500 Subject: [PATCH] Development --- .../ReferencedObjects/LibSource/ctlXMLEditLib/roRichTextBox.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PROMS/ReferencedObjects/LibSource/ctlXMLEditLib/roRichTextBox.cs b/PROMS/ReferencedObjects/LibSource/ctlXMLEditLib/roRichTextBox.cs index 77f6da37..cebc89fc 100644 --- a/PROMS/ReferencedObjects/LibSource/ctlXMLEditLib/roRichTextBox.cs +++ b/PROMS/ReferencedObjects/LibSource/ctlXMLEditLib/roRichTextBox.cs @@ -32,7 +32,7 @@ namespace ctlXMLEditLib public void InsertSymbol( int symbcode) { int position = this.SelectionStart; - string sym = string.Format(symbcode < 256 ? "\'{0:X2}" : @"\u{0}", symbcode); + string sym = symbcode < 256 ? ((char)symbcode).ToString() : string.Format(@"\u{0}", symbcode); this.SelectedRtf = RtfPrefixForSymbols + sym + @"}"; Select(position, -1); Select(position + 1, 0);