Click here to Skip to main content
15,915,603 members
Home / Discussions / C#
   

C#

 
GeneralRe: How to get combo items [modified] Pin
ranandbe6-Jun-06 21:13
ranandbe6-Jun-06 21:13 
GeneralRe: How to get combo items [modified] Pin
rah_sin6-Jun-06 21:17
professionalrah_sin6-Jun-06 21:17 
AnswerRe: How to get combo items Pin
MCSD-Gandalf7-Jun-06 3:05
MCSD-Gandalf7-Jun-06 3:05 
GeneralRe: How to get combo items Pin
Sean Michael Murphy7-Jun-06 8:22
Sean Michael Murphy7-Jun-06 8:22 
GeneralRe: How to get combo items Pin
MCSD-Gandalf7-Jun-06 8:48
MCSD-Gandalf7-Jun-06 8:48 
GeneralRe: How to get combo items Pin
Sean Michael Murphy7-Jun-06 10:09
Sean Michael Murphy7-Jun-06 10:09 
QuestionTo reach up to most child folder from a root node Pin
donymony6-Jun-06 18:46
donymony6-Jun-06 18:46 
AnswerRe: To reach up to most child folder from a root node Pin
abhinish6-Jun-06 19:37
abhinish6-Jun-06 19:37 
QuestionDialog Box Pin
Imtiaz Murtaza6-Jun-06 17:19
Imtiaz Murtaza6-Jun-06 17:19 
AnswerRe: Dialog Box Pin
rah_sin6-Jun-06 18:57
professionalrah_sin6-Jun-06 18:57 
QuestionMemory Allocation For new Object Pin
friend4allmo6-Jun-06 16:54
friend4allmo6-Jun-06 16:54 
AnswerRe: Memory Allocation For new Object Pin
Guffa6-Jun-06 18:52
Guffa6-Jun-06 18:52 
GeneralRe: Memory Allocation For new Object Pin
leppie6-Jun-06 21:00
leppie6-Jun-06 21:00 
AnswerRe: Memory Allocation For new Object Pin
friend4allmo7-Jun-06 8:44
friend4allmo7-Jun-06 8:44 
QuestionHow to define a function from WIN32 DLL in c# . Pin
dfbx6-Jun-06 16:20
dfbx6-Jun-06 16:20 
AnswerRe: How to define a function from WIN32 DLL in c# . Pin
dr.TyGER (Konstantin)6-Jun-06 18:57
dr.TyGER (Konstantin)6-Jun-06 18:57 
GeneralRe: How to define a function from WIN32 DLL in c# . Pin
dfbx6-Jun-06 19:21
dfbx6-Jun-06 19:21 
QuestionDisplay of text delayed [modified] Pin
printscreen123456-Jun-06 15:53
printscreen123456-Jun-06 15:53 
AnswerRe: Display of text delayed [modified] Pin
Guffa6-Jun-06 19:00
Guffa6-Jun-06 19:00 
GeneralRe: Display of text delayed [modified] Pin
printscreen123456-Jun-06 19:33
printscreen123456-Jun-06 19:33 
AnswerRe: Display of text delayed [modified] Pin
Guffa6-Jun-06 23:15
Guffa6-Jun-06 23:15 
You are confusing hooking up an event with using an event.

Adding an event handler will hook up the method to the event, but it will not call the method. If you do this more than once, the event will contain more than one hook to the same method. That means that every time the event is used it will call the method more than one time.

The paint event is used automatically whenever the control needs to be redrawn. You don't use the paint event yourself. If you need the control to be redrawn you use the Invalidate method to tell the system to redraw the control.


---
b { font-weight: normal; }

GeneralRe: Display of text delayed [modified] Pin
printscreen123457-Jun-06 1:37
printscreen123457-Jun-06 1:37 
GeneralRe: Display of text delayed [modified] Pin
Guffa7-Jun-06 20:23
Guffa7-Jun-06 20:23 
GeneralRe: Display of text delayed Pin
printscreen123459-Jun-06 21:30
printscreen123459-Jun-06 21:30 
AnswerRe: Display of text delayed Pin
Guffa9-Jun-06 22:22
Guffa9-Jun-06 22:22 

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.