Click here to Skip to main content
15,887,313 members
Home / Discussions / C#
   

C#

 
GeneralRe: Delete specific rows from database tables Pin
Saidrex24-Jun-12 3:09
Saidrex24-Jun-12 3:09 
QuestionHttp handlers Pin
jayanttripathi23-Jun-12 7:21
jayanttripathi23-Jun-12 7:21 
AnswerRe: Http handlers Pin
Vitaly Tomilov23-Jun-12 13:22
Vitaly Tomilov23-Jun-12 13:22 
AnswerRe: Http handlers Pin
BobJanova25-Jun-12 2:40
BobJanova25-Jun-12 2:40 
QuestionOverride C# event Pin
Thahir Pattanathel23-Jun-12 1:09
Thahir Pattanathel23-Jun-12 1:09 
AnswerRe: Override C# event Pin
OriginalGriff23-Jun-12 1:41
mveOriginalGriff23-Jun-12 1:41 
GeneralRe: Override C# event Pin
Thahir Pattanathel23-Jun-12 2:07
Thahir Pattanathel23-Jun-12 2:07 
AnswerRe: Override C# event Pin
Luc Pattyn23-Jun-12 3:50
sitebuilderLuc Pattyn23-Jun-12 3:50 
If the app is a .NET WinForms app where you have something that implements a Form or other Container, holding a Button having a Click handler implemented by providing an OnClick() handler, then you should provide your own override OnClick(...) handler and inide it NOT call base.OnClick(). If OTOH the current handler was added using Click+=new EventHandler(myNewClickHandler) then you have to remove that handler, either by removing the code that adds it, or by actually removing it using the -= operator.

See, it would be easier if you stated a more complete and clear question, possibly showing some code.

Smile | :)
Luc Pattyn [My Articles] Nil Volentibus Arduum

QuestionRe: Override C# event Pin
Thahir Pattanathel23-Jun-12 19:41
Thahir Pattanathel23-Jun-12 19:41 
GeneralRe: Override C# event Pin
Dave Kreskowiak23-Jun-12 3:51
mveDave Kreskowiak23-Jun-12 3:51 
QuestionStoring Info Between Events Pin
ASPnoob22-Jun-12 23:19
ASPnoob22-Jun-12 23:19 
AnswerRe: Storing Info Between Events Pin
Richard MacCutchan22-Jun-12 23:45
mveRichard MacCutchan22-Jun-12 23:45 
GeneralRe: Storing Info Between Events Pin
ignrod23-Jun-12 3:24
ignrod23-Jun-12 3:24 
GeneralRe: Storing Info Between Events Pin
Richard MacCutchan23-Jun-12 3:33
mveRichard MacCutchan23-Jun-12 3:33 
GeneralRe: Storing Info Between Events Pin
ignrod23-Jun-12 4:16
ignrod23-Jun-12 4:16 
GeneralRe: Storing Info Between Events Pin
Richard MacCutchan23-Jun-12 4:40
mveRichard MacCutchan23-Jun-12 4:40 
GeneralRe: Storing Info Between Events Pin
Dave Kreskowiak23-Jun-12 3:47
mveDave Kreskowiak23-Jun-12 3:47 
AnswerRe: Storing Info Between Events Pin
Luc Pattyn23-Jun-12 4:08
sitebuilderLuc Pattyn23-Jun-12 4:08 
GeneralRe: Storing Info Between Events Pin
Richard MacCutchan23-Jun-12 4:45
mveRichard MacCutchan23-Jun-12 4:45 
AnswerRe: Storing Info Between Events Pin
Luc Pattyn23-Jun-12 4:55
sitebuilderLuc Pattyn23-Jun-12 4:55 
GeneralRe: Storing Info Between Events Pin
Richard MacCutchan23-Jun-12 5:08
mveRichard MacCutchan23-Jun-12 5:08 
AnswerRe: Storing Info Between Events Pin
Luc Pattyn23-Jun-12 5:11
sitebuilderLuc Pattyn23-Jun-12 5:11 
GeneralRe: Storing Info Between Events Pin
Richard MacCutchan23-Jun-12 5:14
mveRichard MacCutchan23-Jun-12 5:14 
GeneralRe: Storing Info Between Events Pin
Dave Kreskowiak23-Jun-12 5:37
mveDave Kreskowiak23-Jun-12 5:37 
AnswerRe: Storing Info Between Events Pin
Luc Pattyn23-Jun-12 4:04
sitebuilderLuc Pattyn23-Jun-12 4:04 

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.