Click here to Skip to main content
15,887,135 members
Home / Discussions / C#
   

C#

 
GeneralRe: listbox sort by dates with dd.mm.yyyy format Pin
fracalifa21-Jul-06 5:19
fracalifa21-Jul-06 5:19 
QuestionVisual Studio crashes [modified] Pin
SJ_Phoenix21-Jul-06 4:01
SJ_Phoenix21-Jul-06 4:01 
AnswerRe: Visual Studio crashes Pin
Mike Dimmick21-Jul-06 4:05
Mike Dimmick21-Jul-06 4:05 
QuestionTableAdapter and it's commands Pin
zaboboa21-Jul-06 3:58
zaboboa21-Jul-06 3:58 
AnswerRe: TableAdapter and it's commands Pin
Not Active21-Jul-06 4:14
mentorNot Active21-Jul-06 4:14 
GeneralRe: TableAdapter and it's commands Pin
zaboboa21-Jul-06 4:25
zaboboa21-Jul-06 4:25 
Questioninvalidate() in winforms Pin
serimcc21-Jul-06 3:33
serimcc21-Jul-06 3:33 
AnswerRe: invalidate() in winforms Pin
Robert Rohde21-Jul-06 3:54
Robert Rohde21-Jul-06 3:54 
Hold a Bitmap with the size of your form and draw into it:
using (Graphics g = Graphics.FromImage(myBitmap)) {
   //...
}

Then in OnPaint just draw this bitmap onto your form:
e.Graphics.DrawImageUnscaled(myBitmap, 0, 0);

Generally speaking controls do not 'remember' what has been painted onto them. Each time they are invalidated (either by code or for example by another window being dragged over them) everything has to be repainted.
GeneralRe: invalidate() in winforms Pin
serimcc21-Jul-06 4:07
serimcc21-Jul-06 4:07 
GeneralRe: invalidate() in winforms Pin
LongRange.Shooter21-Jul-06 4:24
LongRange.Shooter21-Jul-06 4:24 
GeneralRe: invalidate() in winforms Pin
Josh Smith21-Jul-06 4:09
Josh Smith21-Jul-06 4:09 
GeneralRe: invalidate() in winforms Pin
Judah Gabriel Himango21-Jul-06 6:02
sponsorJudah Gabriel Himango21-Jul-06 6:02 
GeneralRe: invalidate() in winforms Pin
Josh Smith21-Jul-06 8:12
Josh Smith21-Jul-06 8:12 
GeneralRe: invalidate() in winforms Pin
Judah Gabriel Himango21-Jul-06 9:01
sponsorJudah Gabriel Himango21-Jul-06 9:01 
GeneralRe: invalidate() in winforms Pin
Josh Smith22-Jul-06 3:36
Josh Smith22-Jul-06 3:36 
GeneralRe: invalidate() in winforms Pin
Judah Gabriel Himango22-Jul-06 6:49
sponsorJudah Gabriel Himango22-Jul-06 6:49 
QuestionDecoupling components Pin
WillemM21-Jul-06 2:37
WillemM21-Jul-06 2:37 
QuestionC# async Socket howto read nutil buffer is empty Pin
TUX2K21-Jul-06 2:12
TUX2K21-Jul-06 2:12 
AnswerRe: C# async Socket howto read nutil buffer is empty [modified] Pin
WillemM21-Jul-06 2:45
WillemM21-Jul-06 2:45 
GeneralRe: C# async Socket howto read nutil buffer is empty Pin
TUX2K21-Jul-06 3:08
TUX2K21-Jul-06 3:08 
GeneralRe: C# async Socket howto read nutil buffer is empty Pin
WillemM21-Jul-06 3:11
WillemM21-Jul-06 3:11 
GeneralRe: C# async Socket howto read nutil buffer is empty Pin
TUX2K21-Jul-06 3:51
TUX2K21-Jul-06 3:51 
GeneralRe: C# async Socket howto read nutil buffer is empty Pin
WillemM21-Jul-06 4:28
WillemM21-Jul-06 4:28 
GeneralRe: C# async Socket howto read nutil buffer is empty Pin
TUX2K21-Jul-06 4:53
TUX2K21-Jul-06 4:53 
QuestionPlayout Video Pin
shakil ahmed21-Jul-06 1:57
shakil ahmed21-Jul-06 1:57 

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.