Click here to Skip to main content
15,884,298 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
microsoft word have the feature of adding symbols and special characters to the paragraph. Is it possible to add this feature to a richtextbox in vb.net
Posted

You don't need such "feature" if you do it programmatically. The "feature" only exists in UI, helps inexperienced users. On the level of software development, there is no such thing as "special" character (how can it be "special", I wonder? :-)).

That was a question of a non-developer. In that sense, it's off-topic.

—SA
 
Share this answer
 
Refer below link

Displaying unicode[^]
 
Share this answer
 
v2
As mentioned here[^]:
Use a font that includes the characters you want and explicitly type the unicode number for the character in the string. For the Arial Unicode MS font you can type "\u20ac" and it will print the euro sign. You can check the codes for the font and their corresponding unicode number with the Windows Character Map (Start->Run->charmap.exe).
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900