[RESOLVED] On the fly previewing of text by replacing characters with other chars
Hi guys :wave:
I'll explain the scenario. I have a list containing character list and it's corresponding unicode characters(copied from CharMap and pasted in VB editor).
For example:
Code:
Text = Unicode --> Unicode character
---------------------------------------
K = U+004A --> J
i = U+00A2 --> ¢
Kaa = U+00A1 --> J¡
il = U+0076 --> v
ppa = U+00B8 --> ¸
...etc
So, what the user types in the first RichTextbox should be parsed and mapped using the above table, and then displayed on the second RichTextBox.
RichTextBox1 (user types in)
RichTextBox2 (preview with no editing here)
Please give me some suggestions/comments on how to accomplish this.
I just want to know an efficient for this.
Thanks :wave:
Re: On the fly previewing of text by replacing characters with other chars
Handle the text changed event perhaps?
Re: On the fly previewing of text by replacing characters with other chars
Yeah. Thanks :thumb:
:wave: