Click here to Skip to main content
15,896,557 members
Home / Discussions / C#
   

C#

 
AnswerRe: display text in textbox Pin
OriginalGriff31-Jul-09 22:44
mveOriginalGriff31-Jul-09 22:44 
GeneralRe: display text in textbox Pin
Abdul Rahman Hamidy31-Jul-09 22:53
Abdul Rahman Hamidy31-Jul-09 22:53 
GeneralRe: display text in textbox Pin
AhsanS31-Jul-09 23:05
AhsanS31-Jul-09 23:05 
GeneralRe: display text in textbox Pin
OriginalGriff31-Jul-09 23:21
mveOriginalGriff31-Jul-09 23:21 
GeneralRe: display text in textbox Pin
Abdul Rahman Hamidy1-Aug-09 1:38
Abdul Rahman Hamidy1-Aug-09 1:38 
GeneralRe: display text in textbox Pin
Henry Minute1-Aug-09 2:10
Henry Minute1-Aug-09 2:10 
GeneralRe: display text in textbox Pin
OriginalGriff1-Aug-09 4:47
mveOriginalGriff1-Aug-09 4:47 
GeneralRe: display text in textbox Pin
DaveyM691-Aug-09 9:12
professionalDaveyM691-Aug-09 9:12 
Good answer!

For future reference, there is no need to create a delegate if using 2.0 or above.

public event ChangeHandler Changed;
can be written as
public event EventHandler Changed;

If custom event args are needed, there is a generic event handler
public event EventHandler<ChangedEventArgs> Changed;

Yay, no more delegate writing when using events Big Grin | :-D

Dave
BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Visual Basic is not used by normal people so we're not covering it here. (Uncyclopedia)
Why are you using VB6? Do you hate yourself? (Christian Graus)

GeneralRe: display text in textbox Pin
OriginalGriff1-Aug-09 22:24
mveOriginalGriff1-Aug-09 22:24 
GeneralRe: display text in textbox Pin
Abdul Rahman Hamidy1-Aug-09 18:07
Abdul Rahman Hamidy1-Aug-09 18:07 
GeneralRe: display text in textbox Pin
OriginalGriff1-Aug-09 22:22
mveOriginalGriff1-Aug-09 22:22 
GeneralRe: display text in textbox Pin
Abdul Rahman Hamidy2-Aug-09 1:01
Abdul Rahman Hamidy2-Aug-09 1:01 
GeneralRe: display text in textbox Pin
OriginalGriff2-Aug-09 1:24
mveOriginalGriff2-Aug-09 1:24 
GeneralRe: display text in textbox Pin
Abdul Rahman Hamidy2-Aug-09 17:54
Abdul Rahman Hamidy2-Aug-09 17:54 
QuestionGlobalAppointmentID Pin
248912831-Jul-09 22:12
248912831-Jul-09 22:12 
QuestionHow to caluclate the sum in datagridview Pin
Anjani Poornima31-Jul-09 20:59
Anjani Poornima31-Jul-09 20:59 
AnswerRe: How to caluclate the sum in datagridview Pin
dan!sh 31-Jul-09 21:43
professional dan!sh 31-Jul-09 21:43 
Questioncrystal report in c#.net Pin
Milind Panchal31-Jul-09 20:19
Milind Panchal31-Jul-09 20:19 
AnswerRe: crystal report in c#.net Pin
Abdul Rahman Hamidy31-Jul-09 22:58
Abdul Rahman Hamidy31-Jul-09 22:58 
AnswerRe: crystal report in c#.net Pin
nelsonpaixao1-Aug-09 5:38
nelsonpaixao1-Aug-09 5:38 
Questionobfuscation Pin
devvvy31-Jul-09 20:19
devvvy31-Jul-09 20:19 
AnswerRe: obfuscation Pin
mustang8631-Jul-09 22:13
mustang8631-Jul-09 22:13 
GeneralRe: obfuscation Pin
devvvy1-Aug-09 15:54
devvvy1-Aug-09 15:54 
AnswerRe: obfuscation Pin
Moreno Airoldi31-Jul-09 23:39
Moreno Airoldi31-Jul-09 23:39 
GeneralRe: obfuscation Pin
devvvy1-Aug-09 13:59
devvvy1-Aug-09 13:59 

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.