votes
C# coding
is it possible to write a text in a richTextBox and send it over to another richTextBox and save it there, so next time I enter the program, all I saved is there?
blah blah blah is here! blah blah » Close
is it possible to write a text in a richTextBox and send it over to another richTextBox and save it there, so next time I enter the program, all I saved is there?
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 ...
This Code is working well but wrong. Wrong because it [b]lower[/b] all text -because of the MatchCase method. How can I make it work without pre-changing anything inside (exception for color text to find)? [code]int posTxt = 0; ...
I got stuck. Some help please. I need to color each word from a string that i search. [code] uc.richTextBox1.Text = alltxt;//add text to uc(userControl).richTextBox1 string search = textBox1.Text; ...
when I save some text with this code(from a richtextbox)into XML: [code] Node1.ChildNodes[retain].InnerText = "<![CDATA[" + RTBshadow[0].Text + "]]>"; doc.Save(DirGetFiles[listBox1.SelectedIndex]); [/code] I ...
Hello, I'm developing an application in which I need to copy the content of a richtextbox with all its font settings to another richtextbox. the code i use is like this [code] this.chatTxt.SelectionStart = this.chatTxt.Text.Length; ...
I'm trying to enable indenting in my RichTextBox editor. What I have below works, but isn't as precise with the text alignment as I would like it to be. Also, the indention seems to stick after applying it. In other words, if I backspa ...
Hi everyone, I am working on the Rich Edit control (version 4.1) from MS. I run in trouble with copy/paste the table from Excel. Following format is incorrect: 1. Gridlines of table cells were missed. 2. Table cells with right aligne ...
Got feedack? Found a bug? report it here.