Click here to Skip to main content
15,905,232 members
Home / Discussions / C#
   

C#

 
GeneralRe: object scope and destruction Pin
poolboy16-Apr-04 7:31
poolboy16-Apr-04 7:31 
GeneralRe: object scope and destruction Pin
Heath Stewart16-Apr-04 7:49
protectorHeath Stewart16-Apr-04 7:49 
GeneralRe: object scope and destruction Pin
Dave Kreskowiak16-Apr-04 8:16
mveDave Kreskowiak16-Apr-04 8:16 
GeneralRe: object scope and destruction Pin
scadaguy16-Apr-04 7:49
scadaguy16-Apr-04 7:49 
GeneralRe: object scope and destruction Pin
PaleyX26-May-04 11:03
PaleyX26-May-04 11:03 
Questionsystem string size? Pin
Anonymous16-Apr-04 6:24
Anonymous16-Apr-04 6:24 
AnswerRe: system string size? Pin
Heath Stewart16-Apr-04 6:29
protectorHeath Stewart16-Apr-04 6:29 
AnswerRe: system string size? Pin
Jeroen Landheer16-Apr-04 10:34
Jeroen Landheer16-Apr-04 10:34 
Generaltab control slow Pin
robmays16-Apr-04 5:47
robmays16-Apr-04 5:47 
GeneralRe: tab control slow Pin
Heath Stewart16-Apr-04 5:51
protectorHeath Stewart16-Apr-04 5:51 
GeneralRe: tab control slow Pin
robmays16-Apr-04 5:57
robmays16-Apr-04 5:57 
GeneralRe: tab control slow Pin
Heath Stewart16-Apr-04 6:00
protectorHeath Stewart16-Apr-04 6:00 
GeneralRe: tab control slow Pin
robmays16-Apr-04 5:52
robmays16-Apr-04 5:52 
GeneralImplementing Security in C# Through Any Hardware Pin
Hemant Mane16-Apr-04 5:30
Hemant Mane16-Apr-04 5:30 
GeneralRe: Implementing Security in C# Through Any Hardware Pin
Heath Stewart16-Apr-04 6:26
protectorHeath Stewart16-Apr-04 6:26 
GeneralRe: Implementing Security in C# Through Any Hardware Pin
partyganger16-Apr-04 10:57
partyganger16-Apr-04 10:57 
Generalthe Form stop to respond Pin
bouli16-Apr-04 4:32
bouli16-Apr-04 4:32 
GeneralRe: the Form stop to respond Pin
Heath Stewart16-Apr-04 6:31
protectorHeath Stewart16-Apr-04 6:31 
GeneralRe: the Form stop to respond Pin
bouli16-Apr-04 12:05
bouli16-Apr-04 12:05 
GeneralMessage Removed Pin
16-Apr-04 6:47
wibblewibblewibble16-Apr-04 6:47 
GeneralRe: the Form stop to respond Pin
bouli16-Apr-04 12:04
bouli16-Apr-04 12:04 
GeneralPainting Dynamic Objects Pin
TimTM16-Apr-04 4:22
TimTM16-Apr-04 4:22 
GeneralRe: Painting Dynamic Objects Pin
Heath Stewart16-Apr-04 6:35
protectorHeath Stewart16-Apr-04 6:35 
Just keep a reference to these objects and either dispose of them or simply move them to new coordinates. If you create new controls each time you read from the stream, you need to dispose those objects. If it's simply a matter of repainting, then make sure you're repainting the background and then the these other objects so that the "old" objects are not still painted on the on-screen bitmap.

Without knowing more about your implementation, it's difficult to answer your question.

Just consider how controls are painted on a form, though. Each control that is contained in the Controls collection property is sent the WM_PAINT message and paints itself after the container has invalidated it's surface, repainting the background as necessary. This is basically how all painting is done by the Window manager (i.e., Windows).

 

Microsoft MVP, Visual C#
My Articles
GeneralSourceSafe and References to COM Objects Pin
Andy Wieberneit16-Apr-04 3:50
Andy Wieberneit16-Apr-04 3:50 
GeneralRe: SourceSafe and References to COM Objects Pin
Heath Stewart16-Apr-04 4:05
protectorHeath Stewart16-Apr-04 4:05 

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.