Click here to Skip to main content
15,913,773 members
Home / Discussions / C#
   

C#

 
GeneralArrayList comparsion Pin
azusakt15-Aug-04 16:49
azusakt15-Aug-04 16:49 
GeneralRe: ArrayList comparsion Pin
sreejith ss nair15-Aug-04 17:44
sreejith ss nair15-Aug-04 17:44 
GeneralRe: ArrayList comparsion Pin
leppie15-Aug-04 19:17
leppie15-Aug-04 19:17 
GeneralRe: ArrayList comparsion Pin
Danny Rodriguez15-Aug-04 20:28
Danny Rodriguez15-Aug-04 20:28 
GeneralForm's this.Close() is not responding Pin
CNU15-Aug-04 16:47
CNU15-Aug-04 16:47 
GeneralRe: Form's this.Close() is not responding Pin
S Sansanwal15-Aug-04 16:49
S Sansanwal15-Aug-04 16:49 
GeneralRe: Form's this.Close() is not responding Pin
CNU15-Aug-04 16:59
CNU15-Aug-04 16:59 
GeneralRe: Form's this.Close() is not responding Pin
sreejith ss nair15-Aug-04 17:17
sreejith ss nair15-Aug-04 17:17 
hi,

Make sure whether you are not doing anything in OnClosing event of your form.



protected override void OnClosing(CancelEventArgs e)
{
try
{
DialogResult r;
r = MessageBox.Show("Do You Want To Close This Module?", "Quiting",
MessageBoxButtons.YesNo, MessageBoxIcon.Information);
if(r == DialogResult.No)
{
e.Cancel = true;
base.OnClosing (e);
}
else
{

e.Cancel = false;
}
}
catch(Exception ex)
{
MessageBox.Show(ex.Message.ToString(),"Error",MessageBoxButtons.OK,MessageBoxIcon.Error);
}
}


**************************
S r e e j i t h N a i r
**************************
GeneralRe: Form's this.Close() is not responding Pin
CNU15-Aug-04 17:22
CNU15-Aug-04 17:22 
GeneralRe: Form's this.Close() is not responding Pin
sreejith ss nair15-Aug-04 21:17
sreejith ss nair15-Aug-04 21:17 
GeneralRe: Form's this.Close() is not responding Pin
sreejith ss nair15-Aug-04 17:10
sreejith ss nair15-Aug-04 17:10 
GeneralRe: Form's this.Close() is not responding Pin
leppie15-Aug-04 19:26
leppie15-Aug-04 19:26 
GeneralRe: Form's this.Close() is not responding Pin
mav.northwind17-Aug-04 3:10
mav.northwind17-Aug-04 3:10 
GeneralRe: Form's this.Close() is not responding Pin
CNU17-Aug-04 15:47
CNU17-Aug-04 15:47 
GeneralRe: Form's this.Close() is not responding Pin
mav.northwind17-Aug-04 20:07
mav.northwind17-Aug-04 20:07 
Questionconvert .pwi to image? Pin
khchan15-Aug-04 16:14
khchan15-Aug-04 16:14 
AnswerRe: convert .pwi to image? Pin
leppie15-Aug-04 19:33
leppie15-Aug-04 19:33 
GeneralRe: convert .pwi to image? Pin
khchan15-Aug-04 20:58
khchan15-Aug-04 20:58 
GeneralRe: convert .pwi to image? Pin
leppie15-Aug-04 21:22
leppie15-Aug-04 21:22 
GeneralA CRY FOR HELP - Threading , Sockets, Asynchronous headaches Pin
Danny Rodriguez15-Aug-04 15:41
Danny Rodriguez15-Aug-04 15:41 
GeneralRe: A CRY FOR HELP - Threading , Sockets, Asynchronous headaches Pin
Brad Bruce15-Aug-04 16:13
Brad Bruce15-Aug-04 16:13 
GeneralRe: A CRY FOR HELP - Threading , Sockets, Asynchronous headaches Pin
Danny Rodriguez15-Aug-04 16:14
Danny Rodriguez15-Aug-04 16:14 
GeneralRe: A CRY FOR HELP - Threading , Sockets, Asynchronous headaches Pin
leppie15-Aug-04 19:40
leppie15-Aug-04 19:40 
GeneralRe: A CRY FOR HELP - Threading , Sockets, Asynchronous headaches Pin
Danny Rodriguez15-Aug-04 20:19
Danny Rodriguez15-Aug-04 20:19 
GeneralRe: A CRY FOR HELP - Threading , Sockets, Asynchronous headaches Pin
Danny Rodriguez15-Aug-04 21:02
Danny Rodriguez15-Aug-04 21:02 

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.