Click here to Skip to main content
15,891,136 members
Home / Discussions / C#
   

C#

 
QuestionReplacing text in TextBox without the blinking Pin
Ollie198611-Apr-07 22:25
Ollie198611-Apr-07 22:25 
AnswerRe: Replacing text in TextBox without the blinking Pin
Christian Graus11-Apr-07 23:16
protectorChristian Graus11-Apr-07 23:16 
GeneralRe: Replacing text in TextBox without the blinking Pin
Ollie198612-Apr-07 0:21
Ollie198612-Apr-07 0:21 
AnswerRe: Replacing text in TextBox without the blinking Pin
Pete O'Hanlon11-Apr-07 23:41
mvePete O'Hanlon11-Apr-07 23:41 
GeneralRe: Replacing text in TextBox without the blinking Pin
Ollie198612-Apr-07 0:20
Ollie198612-Apr-07 0:20 
GeneralRe: Replacing text in TextBox without the blinking Pin
Pete O'Hanlon12-Apr-07 0:40
mvePete O'Hanlon12-Apr-07 0:40 
GeneralRe: Replacing text in TextBox without the blinking Pin
Ollie198612-Apr-07 2:45
Ollie198612-Apr-07 2:45 
GeneralRe: Replacing text in TextBox without the blinking Pin
Pete O'Hanlon12-Apr-07 2:56
mvePete O'Hanlon12-Apr-07 2:56 
Say you have a progressbar control with the text on it (we'll call an instance of it superProgressBar), then you would normally do
superProgressBar.BeginUpdate();superProgressBar.Increment();superProgressBar.EndUpdate();
The Increment method would be responsible for updating the scroll bar and writing the text on it.

Also, you might want to consider setting up double buffering. Use the following
this.SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.UserPaint | ControlStyles.DoubleBuffer,true);


Deja View - the feeling that you've seen this post before.

Questionoverriding members? Pin
NaNg1524111-Apr-07 22:20
NaNg1524111-Apr-07 22:20 
AnswerRe: overriding members? Pin
Mazdak11-Apr-07 22:36
Mazdak11-Apr-07 22:36 
GeneralRe: overriding members? Pin
NaNg1524112-Apr-07 0:56
NaNg1524112-Apr-07 0:56 
QuestionKeyboard Spy Pin
Saikek11-Apr-07 22:11
Saikek11-Apr-07 22:11 
AnswerRe: Keyboard Spy Pin
Ollie198611-Apr-07 22:18
Ollie198611-Apr-07 22:18 
AnswerRe: Keyboard Spy Pin
Martin#11-Apr-07 22:22
Martin#11-Apr-07 22:22 
QuestionCodeKeep plugin Pin
Saikek11-Apr-07 22:09
Saikek11-Apr-07 22:09 
Questiontry catch (re)throw problem... Pin
Super Lloyd11-Apr-07 21:28
Super Lloyd11-Apr-07 21:28 
AnswerRe: try catch (re)throw problem... Pin
Jaiprakash M Bankolli11-Apr-07 21:34
Jaiprakash M Bankolli11-Apr-07 21:34 
AnswerRe: try catch (re)throw problem... Pin
Stevo Z11-Apr-07 21:44
Stevo Z11-Apr-07 21:44 
AnswerRe: try catch (re)throw problem... Pin
Scott Dorman12-Apr-07 3:04
professionalScott Dorman12-Apr-07 3:04 
GeneralRe: try catch (re)throw problem... Pin
Super Lloyd12-Apr-07 4:05
Super Lloyd12-Apr-07 4:05 
AnswerRe: try catch (re)throw problem... Pin
Vega0212-Apr-07 21:04
Vega0212-Apr-07 21:04 
Questionwhich tools we need when building games ? Pin
kkun11-Apr-07 21:16
kkun11-Apr-07 21:16 
QuestionDVD File Reader Pin
apostleofzion111-Apr-07 21:14
apostleofzion111-Apr-07 21:14 
Questionxml File name error [modified] Pin
7111-Apr-07 21:04
7111-Apr-07 21:04 
AnswerRe: xml File name error Pin
Jaiprakash M Bankolli11-Apr-07 21:29
Jaiprakash M Bankolli11-Apr-07 21:29 

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.