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

C#

 
GeneralRe: Difference b/w dispose() & finalize() Pin
Colin Angus Mackay31-Aug-07 3:12
Colin Angus Mackay31-Aug-07 3:12 
AnswerRe: Difference b/w dispose() & finalize() Pin
Vasudevan Deepak Kumar31-Aug-07 2:31
Vasudevan Deepak Kumar31-Aug-07 2:31 
AnswerRe: Difference b/w dispose() & finalize() Pin
Scott Dorman31-Aug-07 8:18
professionalScott Dorman31-Aug-07 8:18 
AnswerRe: Difference b/w dispose() & finalize() Pin
Scott Dorman31-Aug-07 8:19
professionalScott Dorman31-Aug-07 8:19 
QuestionReceiving Mail from an Exchange Server Pin
Programm3r31-Aug-07 1:20
Programm3r31-Aug-07 1:20 
AnswerRe: Receiving Mail from an Exchange Server Pin
Vasudevan Deepak Kumar31-Aug-07 2:30
Vasudevan Deepak Kumar31-Aug-07 2:30 
Questionhow use Line Break in Gios PDF .NET library [modified] Pin
sanjeevRanjan31-Aug-07 1:07
sanjeevRanjan31-Aug-07 1:07 
AnswerRe: how use Line Break in Gios PDF .NET library Pin
Vasudevan Deepak Kumar31-Aug-07 2:34
Vasudevan Deepak Kumar31-Aug-07 2:34 
Questionquery string encryption Pin
Sonia Gupta31-Aug-07 1:05
Sonia Gupta31-Aug-07 1:05 
AnswerRe: query string encryption Pin
Pete O'Hanlon31-Aug-07 1:08
mvePete O'Hanlon31-Aug-07 1:08 
GeneralRe: query string encryption Pin
Sonia Gupta31-Aug-07 1:32
Sonia Gupta31-Aug-07 1:32 
GeneralRe: query string encryption Pin
Pete O'Hanlon31-Aug-07 1:58
mvePete O'Hanlon31-Aug-07 1:58 
AnswerRe: query string encryption Pin
Vasudevan Deepak Kumar31-Aug-07 2:33
Vasudevan Deepak Kumar31-Aug-07 2:33 
Questionasp.net panel like code project Pin
mfmaneef31-Aug-07 1:02
mfmaneef31-Aug-07 1:02 
AnswerRe: asp.net panel like code project Pin
\laddie31-Aug-07 1:16
\laddie31-Aug-07 1:16 
QuestionInput String Pin
minniemooo31-Aug-07 0:51
minniemooo31-Aug-07 0:51 
AnswerRe: Input String Pin
Colin Angus Mackay31-Aug-07 0:59
Colin Angus Mackay31-Aug-07 0:59 
AnswerRe: Input String Pin
Luc Pattyn31-Aug-07 3:57
sitebuilderLuc Pattyn31-Aug-07 3:57 
QuestionHi Control rendering Pin
CodeVarma31-Aug-07 0:33
CodeVarma31-Aug-07 0:33 
QuestionDataGrid Pin
André Stroebel30-Aug-07 22:49
André Stroebel30-Aug-07 22:49 
AnswerRe: DataGrid Pin
Xmen Real 30-Aug-07 22:58
professional Xmen Real 30-Aug-07 22:58 
GeneralRe: DataGrid Pin
André Stroebel30-Aug-07 23:06
André Stroebel30-Aug-07 23:06 
GeneralRe: DataGrid Pin
André Stroebel30-Aug-07 23:23
André Stroebel30-Aug-07 23:23 
GeneralRe: DataGrid Pin
Xmen Real 30-Aug-07 23:29
professional Xmen Real 30-Aug-07 23:29 
QuestionEvents Pin
Sonia Gupta30-Aug-07 22:47
Sonia Gupta30-Aug-07 22:47 
When the button is pressed, certain actions should be performed at the system level. These include changing the appearance of

the button to give the user a feeling that the button is being pressed and so on. In common programming languages, this is

done by placing the code that should be executed when button click occurs in some functions and invoking these functions when

the user clicks the button.

Here, clicking the button is normally referred to as an 'Event' and all the associated functions that are called as a result

of an event as 'Event Handlers'.

Now question is
private void button1_Click(object sender, EventArgs e)
{
abc();
}

void abc()
{
}

the function button1_Click() and calling function abc() both are called as event handler or only the function button1_Click() is an event handler?



Sonia Gupta
Soniagupta1@yahoo.co.in
Yahoo messengerId-soniagupta1
Love is Friendship and Friendship is Love....

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.