Reputation: 872
I'm making a C++ code editor application using VB.NET. I'd like to change the color of the keywords as the user types it. Also I'm looking for a way to highlight some lines of the code.
Is there a way to change the forecolor and backcolour of a piece of text inside a textbox or a rich textbox?
Upvotes: 5
Views: 1870
Reputation: 1854
Unfortunately, the normal foreground and background properties of a textbox cannot help, and you need to use rich text and format that manually (through text coloring and highlighting algorithms).
Upvotes: 1
Reputation: 12613
I do not really know what you want to do so here are some options.
If you want a step by step tutorial on how to write a syntax highlighting control, you can read these articles:
For a basic syntax highlighting control written in VB.NET, see this article: Color Syntax Control (VB.NET).
There are two very good options if you want a fully-fledged syntax highlighting control. These are:
Upvotes: 5
Reputation: 2886
Yes, use RTF in the richtextbox control.
From http://www.biblioscape.com/rtf15_spec.htm
{\f1\cb1\cf2 This is colored text. The background is color
1 and the foreground is color 2.}
Upvotes: 5