Click here to Skip to main content
15,911,646 members
Home / Discussions / C#
   

C#

 
QuestionImplementation help. Cheers Guys!! Pin
PSMITH821-Aug-09 0:25
PSMITH821-Aug-09 0:25 
QuestionError: Dynamic SQL generation for the UpdateCommand is not supported against a SelectCommand that does not return any key column information. Pin
Omar Akhtar Sheikh31-Jul-09 23:58
Omar Akhtar Sheikh31-Jul-09 23:58 
AnswerRe: Error: Dynamic SQL generation for the UpdateCommand is not supported against a SelectCommand that does not return any key column information. Pin
Moreno Airoldi1-Aug-09 2:00
Moreno Airoldi1-Aug-09 2:00 
Questiondisplay text in textbox Pin
Abdul Rahman Hamidy31-Jul-09 22:26
Abdul Rahman Hamidy31-Jul-09 22:26 
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 

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.