You can transform an editable Windows Forms text box into a read-only control. For example, the text box may display a value that is usually edited but may not be currently, due to the state of the ...
//Create the instance for textbox TextBox text = new TextBox(); public Form1() { InitializeComponent(); text.Visible = false; //Add the texbox to the grid this.gridControl1.Controls.Add(text); //Hook ...
Is there a way to get a WinForms RichTextBox control to scroll to it's end programmatically?<BR><BR>I've got an app which will eventually be outputting to a log file but for now I'd like it's output ...