blah blah blah is here! blah blah » Close

1
votes
1 answers

How do I make font uppercase or lowercase is Visual C# .NET?

So I'm trying to make a selected amount of text (in a rich text box) go uppercase or go lower case, when that option is clicked in a contextmenu. Here's the code I'm trying to use: [code]private void toUPPERCASEToolStripMenuItem_Click ...

0
votes
1 answers

How do I color a specific word in a Rich Text Box in C#?

In Visual C#.NET, I want to change the color of specific text when it is typed in to a rich text box. For example, I might want to color the world "hi", so when the user is typing in the rich text box, if they type "hi&quo ...

1
votes
0 answers

How do I append text to the front of a selected line in a Rich Text Box?

Let's say I have some batch code that prints out a hello world program in batch, and I have placed the code into a rich text box (that is in visual C# .NET): [code]@echo off cls title Hello World echo Hello World pause[/code] Now, ...

Feedback