Click here to Skip to main content
15,881,413 members
Home / Discussions / C#
   

C#

 
AnswerRe: Unload DOM Pin
John Fisher6-Sep-05 5:21
John Fisher6-Sep-05 5:21 
GeneralRe: Unload DOM Pin
ksanju10006-Sep-05 20:35
ksanju10006-Sep-05 20:35 
GeneralRe: Unload DOM Pin
John Fisher7-Sep-05 4:09
John Fisher7-Sep-05 4:09 
QuestionWeb Services in VS 2003 Pin
seee sharp6-Sep-05 1:22
seee sharp6-Sep-05 1:22 
QuestionRichetextbox problem again Pin
snouto6-Sep-05 1:13
snouto6-Sep-05 1:13 
AnswerRe: Richetextbox problem again Pin
S. Senthil Kumar6-Sep-05 1:51
S. Senthil Kumar6-Sep-05 1:51 
GeneralRe: Richetextbox problem again Pin
snouto6-Sep-05 2:08
snouto6-Sep-05 2:08 
GeneralRe: Richetextbox problem again Pin
S. Senthil Kumar6-Sep-05 2:46
S. Senthil Kumar6-Sep-05 2:46 
Not compiled or tested, but you'll get the idea.
string message = "Snouto : " + textBox1.Text;
richTextBox1.Text += message + "\r\n";
int pos = 0;
int prevIndex = -1;
while(pos < richTextBox1.TextLength)
{
int index = richTextBox1.Find(textBox1.Text,pos,RichTextBoxFinds.None);
if(index == -1)
break;
prevIndex = index;
pos = index + RichTextBox1.TextLength;
}
index = prevIndex;
richTextBox1.Select(index,textBox1.Text.Length);
richTextBox1.SelectionFont = fontDialog1.Font;
richTextBox1.SelectionColor = colorDialog1.Color;

textBox1.Clear();


Regards
Senthil
_____________________________
My Blog | My Articles | WinMacro
QuestionBase Class problem with forms Pin
Russell Jones6-Sep-05 0:34
Russell Jones6-Sep-05 0:34 
AnswerRe: Base Class problem with forms Pin
S. Senthil Kumar6-Sep-05 2:00
S. Senthil Kumar6-Sep-05 2:00 
GeneralRe: Base Class problem with forms Pin
Russell Jones6-Sep-05 2:33
Russell Jones6-Sep-05 2:33 
QuestionThreading and Forms Pin
Dani Duran Kenobi6-Sep-05 0:33
Dani Duran Kenobi6-Sep-05 0:33 
AnswerRe: Threading and Forms Pin
S. Senthil Kumar6-Sep-05 2:04
S. Senthil Kumar6-Sep-05 2:04 
QuestionControl Problems? Pin
Simon Wren5-Sep-05 23:36
professionalSimon Wren5-Sep-05 23:36 
AnswerRe: Control Problems? Pin
S. Senthil Kumar6-Sep-05 2:12
S. Senthil Kumar6-Sep-05 2:12 
GeneralRe: Control Problems? Pin
Simon Wren6-Sep-05 2:14
professionalSimon Wren6-Sep-05 2:14 
Questioncan i access my lan pc from out side lan using remoting Pin
Mayank Chauhan5-Sep-05 23:33
Mayank Chauhan5-Sep-05 23:33 
QuestionTAB KEY AND DATAGRID CELLS Pin
Greeky5-Sep-05 23:30
Greeky5-Sep-05 23:30 
AnswerRe: TAB KEY AND DATAGRID CELLS Pin
miah alom6-Sep-05 3:05
miah alom6-Sep-05 3:05 
QuestionIntPtr usage! Pin
Duong Tien Nam5-Sep-05 23:19
Duong Tien Nam5-Sep-05 23:19 
AnswerRe: IntPtr usage! Pin
S. Senthil Kumar6-Sep-05 2:17
S. Senthil Kumar6-Sep-05 2:17 
AnswerRe: IntPtr usage! Pin
Daniel Turini6-Sep-05 4:06
Daniel Turini6-Sep-05 4:06 
QuestionCreate new controls in RunTime Pin
liqnit5-Sep-05 22:56
liqnit5-Sep-05 22:56 
AnswerRe: Create new controls in RunTime Pin
Stefan Troschuetz6-Sep-05 0:32
Stefan Troschuetz6-Sep-05 0:32 
GeneralRe: Create new controls in RunTime Pin
liqnit6-Sep-05 3:15
liqnit6-Sep-05 3:15 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.