Click here to Skip to main content
15,913,722 members
Home / Discussions / C#
   

C#

 
AnswerRe: how to deactivate the keyboard? Pin
Heath Stewart7-Feb-05 9:48
protectorHeath Stewart7-Feb-05 9:48 
GeneralNumericUpDown: ValueChanged event not fired Pin
Lizzy6-Feb-05 19:33
Lizzy6-Feb-05 19:33 
GeneralRe: NumericUpDown: ValueChanged event not fired Pin
Heath Stewart7-Feb-05 9:52
protectorHeath Stewart7-Feb-05 9:52 
GeneralHow.. Pin
Yulianto.6-Feb-05 18:00
Yulianto.6-Feb-05 18:00 
GeneralRe: How.. Pin
PSK_7-Feb-05 1:15
PSK_7-Feb-05 1:15 
GeneralRe: How.. Pin
Yulianto.7-Feb-05 14:23
Yulianto.7-Feb-05 14:23 
GeneralRe: How.. Pin
PSK_7-Feb-05 1:30
PSK_7-Feb-05 1:30 
GeneralRe: How.. Pin
S. Senthil Kumar7-Feb-05 18:40
S. Senthil Kumar7-Feb-05 18:40 
QuestionLine to line height ? Pin
sachinkalse6-Feb-05 14:59
sachinkalse6-Feb-05 14:59 
Generalaccessing properties of the mdiParent from the child Pin
kowplunk6-Feb-05 14:34
kowplunk6-Feb-05 14:34 
GeneralRe: accessing properties of the mdiParent from the child Pin
Skynyrd7-Feb-05 8:49
Skynyrd7-Feb-05 8:49 
GeneralRe: accessing properties of the mdiParent from the child Pin
kowplunk7-Feb-05 14:07
kowplunk7-Feb-05 14:07 
GeneralRe: accessing properties of the mdiParent from the child Pin
Anonymous8-Feb-05 3:18
Anonymous8-Feb-05 3:18 
GeneralRe: accessing properties of the mdiParent from the child Pin
kowplunk8-Feb-05 3:22
kowplunk8-Feb-05 3:22 
GeneralRe: accessing properties of the mdiParent from the child Pin
Skynyrd8-Feb-05 11:56
Skynyrd8-Feb-05 11:56 
GeneralDataGrid Cell being edited Pin
Keith La Force6-Feb-05 9:55
Keith La Force6-Feb-05 9:55 
GeneralRe: DataGrid Cell being edited Pin
Christian Graus6-Feb-05 14:40
protectorChristian Graus6-Feb-05 14:40 
GeneralRe: DataGrid Cell being edited Pin
Luis Alonso Ramos6-Feb-05 17:55
Luis Alonso Ramos6-Feb-05 17:55 
GeneralRe: DataGrid Cell being edited Pin
Keith La Force7-Feb-05 1:16
Keith La Force7-Feb-05 1:16 
GeneralGetOpenFileName in C# Pin
Formato6-Feb-05 9:01
Formato6-Feb-05 9:01 
GeneralRe: GetOpenFileName in C# Pin
Heath Stewart7-Feb-05 6:15
protectorHeath Stewart7-Feb-05 6:15 
GeneralEvents and delegates: help! Pin
Gleb Belov6-Feb-05 4:55
Gleb Belov6-Feb-05 4:55 
GeneralRe: Events and delegates: help! Pin
mav.northwind6-Feb-05 5:12
mav.northwind6-Feb-05 5:12 
Here's a description of delegates and events:
Events and Delegates on MSDN[^]

Basically, by adding an event handler to an event you subscribe your listener to be informed when the particular event occurs.
Your class is informed by the event source by calling your delegate function when the event occurs.
For the event source class to be able to call your function it has to know what parameters an event handler function expects. That's why delegates have to be declared.

Think of delegates as type safe function pointers.

mav
GeneralRe: Events and delegates: help! Pin
Gleb Belov6-Feb-05 5:37
Gleb Belov6-Feb-05 5:37 
GeneralRe: Events and delegates: help! Pin
Skynyrd6-Feb-05 6:17
Skynyrd6-Feb-05 6:17 

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.