Click here to Skip to main content
15,914,594 members
Home / Discussions / C#
   

C#

 
GeneralRe: Property Grid without an object Pin
Nathan Blomquist24-Jul-02 6:32
Nathan Blomquist24-Jul-02 6:32 
GeneralRe: Property Grid without an object Pin
Luis Alonso Ramos24-Jul-02 7:32
Luis Alonso Ramos24-Jul-02 7:32 
GeneralRe: Property Grid without an object Pin
Luis Alonso Ramos24-Jul-02 9:49
Luis Alonso Ramos24-Jul-02 9:49 
GeneralRe: Property Grid without an object Pin
Nathan Blomquist24-Jul-02 10:14
Nathan Blomquist24-Jul-02 10:14 
GeneralRe: Property Grid without an object Pin
Luis Alonso Ramos24-Jul-02 10:48
Luis Alonso Ramos24-Jul-02 10:48 
QuestionWhat override when the control is added? Pin
Zombies with Coffee, LLC22-Jul-02 11:04
professionalZombies with Coffee, LLC22-Jul-02 11:04 
AnswerRe: What override when the control is added? Pin
James T. Johnson22-Jul-02 13:35
James T. Johnson22-Jul-02 13:35 
GeneralRe: What override when the control is added? Pin
Zombies with Coffee, LLC23-Jul-02 5:18
professionalZombies with Coffee, LLC23-Jul-02 5:18 
GeneralCoping Files over the internet Pin
Orion Buttigieg22-Jul-02 5:53
Orion Buttigieg22-Jul-02 5:53 
GeneralRe: Coping Files over the internet Pin
jparsons22-Jul-02 6:44
jparsons22-Jul-02 6:44 
GeneralRe: Coping Files over the internet Pin
Orion Buttigieg22-Jul-02 7:16
Orion Buttigieg22-Jul-02 7:16 
QuestionComboBox bug or feature? Pin
r.t.22-Jul-02 4:57
r.t.22-Jul-02 4:57 
AnswerRe: ComboBox bug or feature? Pin
Jasper John22-Jul-02 5:26
sussJasper John22-Jul-02 5:26 
AnswerRe: ComboBox bug or feature? Pin
Chris Rickard22-Jul-02 7:44
Chris Rickard22-Jul-02 7:44 
GeneralTyped DataSets and casing problems Pin
Andrew Connell22-Jul-02 4:33
Andrew Connell22-Jul-02 4:33 
GeneralRe: Typed DataSets and casing problems Pin
jparsons22-Jul-02 5:30
jparsons22-Jul-02 5:30 
GeneralRe: Typed DataSets and casing problems Pin
Andrew Connell22-Jul-02 6:55
Andrew Connell22-Jul-02 6:55 
GeneralScrolling in a RichTexBox Pin
jpeg22-Jul-02 3:51
jpeg22-Jul-02 3:51 
GeneralRe: Scrolling in a RichTexBox Pin
Steven Behnke22-Jul-02 7:30
Steven Behnke22-Jul-02 7:30 
All you will need to do is...

int index=dialogTextBox.TextLength;
dialogTextBox.AppendText(message+"\r\n");

// Inserted here
dialogTextBox.Focus();

dialogTextBox.Select(index, message.Length);
dialogTextBox.SelectionColor=myColor;

// Focus your entry box back again here.

Or you can write an On Text Changed handler, like I had to that will focus the box, scroll to the caret, then focus back to the entry. You will have to do this if you are adding text to the box from a thread that you created to read from the socket like I did. Doh!

-Steven

GeneralRe: Scrolling in a RichTexBox Pin
jpeg22-Jul-02 21:37
jpeg22-Jul-02 21:37 
GeneralRe: Scrolling in a RichTexBox Pin
Steven Behnke23-Jul-02 4:09
Steven Behnke23-Jul-02 4:09 
GeneralHelp With DataSets Pin
Li Mu Bai22-Jul-02 3:14
Li Mu Bai22-Jul-02 3:14 
GeneralRe: Help With DataSets Pin
Roger Stewart23-Jul-02 6:12
professionalRoger Stewart23-Jul-02 6:12 
GeneralDataSet Pin
Li Mu Bai22-Jul-02 1:38
Li Mu Bai22-Jul-02 1:38 
GeneralRe: DataSet Pin
James T. Johnson22-Jul-02 1:55
James T. Johnson22-Jul-02 1:55 

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.