Click here to Skip to main content
15,920,053 members
Home / Discussions / C#
   

C#

 
AnswerRe: Questions on TextBox control Pin
Sheel Gohe18-Jan-06 1:12
Sheel Gohe18-Jan-06 1:12 
GeneralRe: Questions on TextBox control Pin
bouli18-Jan-06 5:05
bouli18-Jan-06 5:05 
Questiongetting client ip Pin
Ankit Aneja18-Jan-06 0:41
Ankit Aneja18-Jan-06 0:41 
GeneralRe: getting client ip Pin
Guffa18-Jan-06 1:21
Guffa18-Jan-06 1:21 
GeneralRe: getting client ip Pin
Ankit Aneja18-Jan-06 1:26
Ankit Aneja18-Jan-06 1:26 
AnswerRe: getting client ip Pin
Guffa24-Jan-06 23:05
Guffa24-Jan-06 23:05 
Questionhelp me plssssssssssssss Pin
willsgeorge18-Jan-06 0:41
willsgeorge18-Jan-06 0:41 
AnswerRe: help me plssssssssssssss Pin
Sheel Gohe18-Jan-06 1:22
Sheel Gohe18-Jan-06 1:22 
dear wilson you have to check the instance of the popped-up form every time you click the button. If form's instance already exist then dont make use of new keyword just use the form's "show" method.


Use this method to check instance of the form (may be this could be useful)

//***********Start**********
private Form isFormAlreadyLoaded(Form ToBeLoadedForm)
{
foreach (Form LoadedForm in this.MdiChildren)
{
if ((LoadedForm.Name == ToBeLoadedForm.Name) && ((LoadedForm.Text.Trim ()) == ToBeLoadedForm.Text.Trim()))
{
return LoadedForm;
}
else
{
return ToBeLoadedForm;
}
}
return ToBeLoadedForm;
}
//***********End**********

regards



Sheel Gohe
QuestionCrystal reports sharing Pin
robmays18-Jan-06 0:24
robmays18-Jan-06 0:24 
Questionvideo playing Pin
sa maq18-Jan-06 0:05
sa maq18-Jan-06 0:05 
QuestionHow to Extract a Key ScanCode in WndProc Pin
redfish3417-Jan-06 23:07
redfish3417-Jan-06 23:07 
AnswerGOT IT! Shooting 2 for 2! Pin
redfish3418-Jan-06 17:09
redfish3418-Jan-06 17:09 
GeneralRe: GOT IT! Shooting 2 for 2! Pin
Dan Neely19-Jan-06 2:18
Dan Neely19-Jan-06 2:18 
Questionwana read a binary file and display its data into text file Pin
geek-age17-Jan-06 22:30
geek-age17-Jan-06 22:30 
AnswerRe: wana read a binary file and display its data into text file Pin
Guffa17-Jan-06 22:53
Guffa17-Jan-06 22:53 
GeneralRe: wana read a binary file and display its data into text file Pin
geek-age17-Jan-06 23:10
geek-age17-Jan-06 23:10 
AnswerRe: wana read a binary file and display its data into text file Pin
Guffa18-Jan-06 0:32
Guffa18-Jan-06 0:32 
Questionusing javascript and xml Pin
imsathy17-Jan-06 21:50
imsathy17-Jan-06 21:50 
QuestionDatagridview determine if row is a new row Pin
CandyMe17-Jan-06 21:47
CandyMe17-Jan-06 21:47 
AnswerRe: Datagridview determine if row is a new row Pin
sathish s17-Jan-06 22:33
sathish s17-Jan-06 22:33 
QuestionHow to do media stremining? Pin
Divyang Mithaiwala17-Jan-06 20:04
Divyang Mithaiwala17-Jan-06 20:04 
AnswerRe: How to do media stremining? Pin
Dave Kreskowiak18-Jan-06 5:18
mveDave Kreskowiak18-Jan-06 5:18 
QuestionWhat's more easy for the machine? Pin
shopi3017-Jan-06 19:43
shopi3017-Jan-06 19:43 
AnswerRe: What's more easy for the machine? Pin
CWIZO17-Jan-06 21:03
CWIZO17-Jan-06 21:03 
AnswerRe: What's more easy for the machine? Pin
Guffa17-Jan-06 21:51
Guffa17-Jan-06 21:51 

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.