Click here to Skip to main content
15,902,634 members
Home / Discussions / C#
   

C#

 
GeneralRe: singelton problem Pin
akkram10-Jun-07 7:01
akkram10-Jun-07 7:01 
GeneralRe: singelton problem Pin
Luc Pattyn10-Jun-07 7:23
sitebuilderLuc Pattyn10-Jun-07 7:23 
GeneralRe: singelton problem Pin
akkram10-Jun-07 7:47
akkram10-Jun-07 7:47 
GeneralRe: singelton problem Pin
Luc Pattyn10-Jun-07 8:17
sitebuilderLuc Pattyn10-Jun-07 8:17 
AnswerRe: singelton problem Pin
Guffa10-Jun-07 7:43
Guffa10-Jun-07 7:43 
AnswerRe: singelton problem Pin
Muammar©10-Jun-07 8:46
Muammar©10-Jun-07 8:46 
GeneralRe: singelton problem Pin
Luc Pattyn10-Jun-07 8:49
sitebuilderLuc Pattyn10-Jun-07 8:49 
GeneralRe: singelton problem Pin
akkram10-Jun-07 23:35
akkram10-Jun-07 23:35 
thx, searched for a while and finally found why I didn't get it to work. Apparently I also need to check if the form has been disposed of.

private Form2 form2;
..
..

private void button1_Click(object sender, EventArgs e)
{
if (form2 == null || form2.IsDisposed)
{
form2 = new Form2();
form2.Show();
}
}
GeneralRe: singelton problem [modified] Pin
Alaric_11-Jun-07 5:27
professionalAlaric_11-Jun-07 5:27 
QuestionSearch.asp.cs in C# Pin
haibec10-Jun-07 5:27
haibec10-Jun-07 5:27 
AnswerRe: Search.asp.cs in C# Pin
Colin Angus Mackay10-Jun-07 6:00
Colin Angus Mackay10-Jun-07 6:00 
GeneralRe: Search.asp.cs in C# Pin
haibec10-Jun-07 6:07
haibec10-Jun-07 6:07 
GeneralRe: Search.asp.cs in C# Pin
Colin Angus Mackay10-Jun-07 11:18
Colin Angus Mackay10-Jun-07 11:18 
AnswerRe: Search.asp.cs in C# Pin
Christian Graus10-Jun-07 13:14
protectorChristian Graus10-Jun-07 13:14 
GeneralRe: Search.asp.cs in C# Pin
haibec10-Jun-07 13:23
haibec10-Jun-07 13:23 
GeneralRe: Search.asp.cs in C# Pin
Christian Graus10-Jun-07 14:36
protectorChristian Graus10-Jun-07 14:36 
QuestionDataGridViewCheckBoxColumn on-click Event Pin
dbetting10-Jun-07 4:52
dbetting10-Jun-07 4:52 
QuestionChange typing language Pin
clint198210-Jun-07 4:50
clint198210-Jun-07 4:50 
AnswerRe: Change typing language Pin
Colin Angus Mackay10-Jun-07 6:02
Colin Angus Mackay10-Jun-07 6:02 
QuestionRe: Change typing language Pin
clint198210-Jun-07 11:59
clint198210-Jun-07 11:59 
AnswerRe: Change typing language Pin
Colin Angus Mackay10-Jun-07 13:19
Colin Angus Mackay10-Jun-07 13:19 
QuestionEncoding in .DBF file. Pin
tg200410-Jun-07 1:59
tg200410-Jun-07 1:59 
AnswerRe: Encoding in .DBF file. Pin
Guffa10-Jun-07 4:33
Guffa10-Jun-07 4:33 
GeneralRe: Encoding in .DBF file. Pin
tg200412-Jun-07 7:15
tg200412-Jun-07 7:15 
AnswerRe: Encoding in .DBF file. Pin
Guffa12-Jun-07 8:17
Guffa12-Jun-07 8:17 

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.