Click here to Skip to main content
15,861,168 members
Home / Discussions / C#
   

C#

 
AnswerRe: C# XmlDocument Encoding Pin
PIEBALDconsult17-Jun-09 9:03
mvePIEBALDconsult17-Jun-09 9:03 
GeneralRe: C# XmlDocument Encoding Pin
Samb198517-Jun-09 9:19
Samb198517-Jun-09 9:19 
GeneralRe: C# XmlDocument Encoding Pin
PIEBALDconsult17-Jun-09 12:00
mvePIEBALDconsult17-Jun-09 12:00 
QuestionAbstract Class, constructors Pin
dwadasi16-Jun-09 21:41
dwadasi16-Jun-09 21:41 
AnswerRe: Abstract Class, constructors [modified] Pin
DaveyM6916-Jun-09 21:58
professionalDaveyM6916-Jun-09 21:58 
AnswerRe: Abstract Class, constructors Pin
PIEBALDconsult17-Jun-09 8:59
mvePIEBALDconsult17-Jun-09 8:59 
Questionproblem with registering flormclosing event with button click event Pin
prasadbuddhika16-Jun-09 21:31
prasadbuddhika16-Jun-09 21:31 
AnswerRe: problem with registering flormclosing event with button click event Pin
musefan16-Jun-09 21:59
musefan16-Jun-09 21:59 
prasadbuddhika wrote:
button1_Click+= Form1_FormClosing;


well you dont add event handlers like that. try...

button1.Click += new EventHandler(Form1_FormClosing);


but your Form1_FormClosing method is just a handler and will not close the form.

what you should do is have the FormClosing handler on the Form.Closing event. Then have the button click event call

Form.Close();


Life goes very fast. Tomorrow, today is already yesterday.

AnswerRe: problem with registering flormclosing event with button click event Pin
DaveyM6916-Jun-09 22:04
professionalDaveyM6916-Jun-09 22:04 
GeneralRe: problem with registering flormclosing event with button click event Pin
prasadbuddhika16-Jun-09 22:29
prasadbuddhika16-Jun-09 22:29 
GeneralRe: problem with registering flormclosing event with button click event Pin
prasadbuddhika16-Jun-09 23:58
prasadbuddhika16-Jun-09 23:58 
AnswerRe: problem with registering flormclosing event with button click event [modified] Pin
Alan N17-Jun-09 0:10
Alan N17-Jun-09 0:10 
GeneralRe: problem with registering flormclosing event with button click event Pin
DaveyM6917-Jun-09 0:10
professionalDaveyM6917-Jun-09 0:10 
GeneralRe: problem with registering flormclosing event with button click event Pin
OriginalGriff17-Jun-09 0:12
mveOriginalGriff17-Jun-09 0:12 
QuestionHelp me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma16-Jun-09 21:08
radhikasharma16-Jun-09 21:08 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Thomas Krojer16-Jun-09 21:32
Thomas Krojer16-Jun-09 21:32 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Mirko198016-Jun-09 21:43
Mirko198016-Jun-09 21:43 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma16-Jun-09 22:08
radhikasharma16-Jun-09 22:08 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma16-Jun-09 22:06
radhikasharma16-Jun-09 22:06 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Thomas Krojer16-Jun-09 22:13
Thomas Krojer16-Jun-09 22:13 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
radhikasharma17-Jun-09 0:21
radhikasharma17-Jun-09 0:21 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
DaveyM6917-Jun-09 0:37
professionalDaveyM6917-Jun-09 0:37 
GeneralRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
OriginalGriff16-Jun-09 22:39
mveOriginalGriff16-Jun-09 22:39 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
DaveyM6916-Jun-09 22:50
professionalDaveyM6916-Jun-09 22:50 
AnswerRe: Help me iam getting stack overflow exeception , while my solution build successfully , but it threw the stack overflow error Pin
Alan N17-Jun-09 0:05
Alan N17-Jun-09 0:05 

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.