i use delegates to update ma richtextbox text as
richTextBox1.Dispatcher.Invoke( new UpdateTextCallback(this.UpdateText),new object[] { outputofvalidation });
richTextBox1.Dispatcher.Invoke(new UpdateTextCallback(this.UpdateText),new object[] {output});
richTextBox1.Dispatcher.Invoke(new UpdateTextCallback(this.UpdateText),new object[]{"Device is connected successfully"});
The above three text are appended together in ma richtextbox.
i wan to display all the three text in different colors.
pls help me to sort out