Click here to Skip to main content
15,905,419 members
Home / Discussions / C#
   

C#

 
AnswerRe: Unhanded Exception Error Pin
Sandeep Mewara23-Jun-12 22:57
mveSandeep Mewara23-Jun-12 22:57 
GeneralRe: Unhanded Exception Error Pin
Saidrex23-Jun-12 23:36
Saidrex23-Jun-12 23:36 
GeneralRe: Unhanded Exception Error Pin
Sandeep Mewara24-Jun-12 2:28
mveSandeep Mewara24-Jun-12 2:28 
GeneralRe: Unhanded Exception Error Pin
Saidrex24-Jun-12 2:32
Saidrex24-Jun-12 2:32 
AnswerRe: Unhanded Exception Error Pin
Eddy Vluggen23-Jun-12 23:40
professionalEddy Vluggen23-Jun-12 23:40 
GeneralRe: Unhanded Exception Error Pin
Saidrex24-Jun-12 0:09
Saidrex24-Jun-12 0:09 
GeneralRe: Unhanded Exception Error Pin
Eddy Vluggen24-Jun-12 0:14
professionalEddy Vluggen24-Jun-12 0:14 
GeneralRe: Unhanded Exception Error Pin
Saidrex24-Jun-12 0:17
Saidrex24-Jun-12 0:17 
GeneralRe: Unhanded Exception Error Pin
Eddy Vluggen24-Jun-12 0:25
professionalEddy Vluggen24-Jun-12 0:25 
GeneralRe: Unhanded Exception Error Pin
Saidrex24-Jun-12 0:32
Saidrex24-Jun-12 0:32 
GeneralRe: Unhanded Exception Error Pin
jschell24-Jun-12 12:27
jschell24-Jun-12 12:27 
QuestionDelete specific rows from database tables Pin
Saidrex23-Jun-12 10:16
Saidrex23-Jun-12 10:16 
AnswerRe: Delete specific rows from database tables Pin
Abhinav S23-Jun-12 18:22
Abhinav S23-Jun-12 18:22 
GeneralRe: Delete specific rows from database tables Pin
Saidrex23-Jun-12 22:37
Saidrex23-Jun-12 22:37 
AnswerRe: Delete specific rows from database tables Pin
Mycroft Holmes23-Jun-12 23:32
professionalMycroft Holmes23-Jun-12 23:32 
GeneralRe: Delete specific rows from database tables Pin
Saidrex23-Jun-12 23:34
Saidrex23-Jun-12 23:34 
GeneralRe: Delete specific rows from database tables Pin
Saidrex24-Jun-12 1:20
Saidrex24-Jun-12 1:20 
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

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.