Click here to Skip to main content
15,895,370 members
Home / Discussions / C#
   

C#

 
GeneralRe: Flicker Free Drawing in C# Pin
J4amieC11-Jan-06 2:29
J4amieC11-Jan-06 2:29 
GeneralRe: Flicker Free Drawing in C# Pin
[Marc]11-Jan-06 16:55
[Marc]11-Jan-06 16:55 
GeneralRe: Flicker Free Drawing in C# Pin
AB777111-Jan-06 17:23
AB777111-Jan-06 17:23 
GeneralRe: Flicker Free Drawing in C# Pin
AB777111-Jan-06 17:24
AB777111-Jan-06 17:24 
GeneralRe: Flicker Free Drawing in C# Pin
AB777111-Jan-06 18:20
AB777111-Jan-06 18:20 
GeneralRe: Flicker Free Drawing in C# Pin
[Marc]11-Jan-06 22:24
[Marc]11-Jan-06 22:24 
GeneralRe: Flicker Free Drawing in C# Pin
AB777111-Jan-06 23:50
AB777111-Jan-06 23:50 
GeneralRe: Flicker Free Drawing in C# Pin
SwitcherSoft30-Mar-11 23:40
SwitcherSoft30-Mar-11 23:40 
Did you try this?

public class MyRichText : RichTextBox
   {
       public MyRichText()
       {
           //by setting Double Buffer, the painting will finish before its redenered
           SetStyle(ControlStyles.OptimizedDoubleBuffer, true);
           SetStyle(ControlStyles.ResizeRedraw, true);
           SetStyle(ControlStyles.Selectable, true);

       }
   }

Jordan

QuestionAnother fax question... Pin
Petrus_Alex10-Jan-06 22:40
Petrus_Alex10-Jan-06 22:40 
QuestionSetup and deployment in visual studio.Net Pin
deep710-Jan-06 22:02
deep710-Jan-06 22:02 
AnswerRe: Setup and deployment in visual studio.Net Pin
mitooki11-Jan-06 0:55
mitooki11-Jan-06 0:55 
AnswerRe: Setup and deployment in visual studio.Net Pin
mav.northwind11-Jan-06 6:33
mav.northwind11-Jan-06 6:33 
QuestionFormat drive Pin
oddstar10-Jan-06 21:59
oddstar10-Jan-06 21:59 
AnswerRe: Format drive Pin
Corinna John10-Jan-06 22:28
Corinna John10-Jan-06 22:28 
Question[Message Deleted] Pin
MicroCenter10-Jan-06 20:02
MicroCenter10-Jan-06 20:02 
AnswerRe: SMART CLIENT DEPLOYMENT Pin
mikailcetinkaya11-Jan-06 9:15
mikailcetinkaya11-Jan-06 9:15 
QuestionMAKING A HTML EDITOR Pin
shopi3010-Jan-06 18:19
shopi3010-Jan-06 18:19 
AnswerRe: MAKING A HTML EDITOR Pin
leppie10-Jan-06 18:44
leppie10-Jan-06 18:44 
AnswerRe: MAKING A HTML EDITOR Pin
Colin Angus Mackay10-Jan-06 20:58
Colin Angus Mackay10-Jan-06 20:58 
AnswerRe: MAKING A HTML EDITOR Pin
Dave Kreskowiak11-Jan-06 5:26
mveDave Kreskowiak11-Jan-06 5:26 
GeneralRe: MAKING A HTML EDITOR Pin
shopi3014-Jan-06 12:53
shopi3014-Jan-06 12:53 
QuestionGetting coordinates of a piepeace??? Pin
Mukesh Kumar Gupta10-Jan-06 18:13
Mukesh Kumar Gupta10-Jan-06 18:13 
AnswerRe: Getting coordinates of a piepeace??? Pin
leppie10-Jan-06 18:46
leppie10-Jan-06 18:46 
QuestionSocket Programming help Pin
DocH0liday10-Jan-06 17:29
DocH0liday10-Jan-06 17:29 
AnswerRe: Socket Programming help Pin
leppie10-Jan-06 18:48
leppie10-Jan-06 18:48 

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.