Click here to Skip to main content
15,907,001 members
Home / Discussions / C#
   

C#

 
AnswerRe: COM and COM+ in C# Pin
Mohamad Al Husseiny29-Sep-05 8:51
Mohamad Al Husseiny29-Sep-05 8:51 
Questionconnect to Mobile Device through bluetooth Pin
Member 231569328-Sep-05 22:55
Member 231569328-Sep-05 22:55 
Questionstarted thread to wait till the other thread finishes Pin
ksanju100028-Sep-05 22:12
ksanju100028-Sep-05 22:12 
AnswerRe: started thread to wait till the other thread finishes Pin
S. Senthil Kumar28-Sep-05 22:40
S. Senthil Kumar28-Sep-05 22:40 
QuestionRegistering a Windows Service Pin
lata07mahi28-Sep-05 22:11
lata07mahi28-Sep-05 22:11 
AnswerRe: Registering a Windows Service Pin
Anonymous29-Sep-05 3:36
Anonymous29-Sep-05 3:36 
Questionhow to get voice data Pin
pakFari28-Sep-05 21:18
pakFari28-Sep-05 21:18 
Questioncheck for a child form's existence Pin
AesopTurtle28-Sep-05 21:07
AesopTurtle28-Sep-05 21:07 
i have an mdi form containing a child form. When a button is clicked, a child form is shown. When the same button is clicked again, a new instance of the same form then appears again --> 2 of the same form appear at the same time. Is there any way that i can check for the child form's existence and show it if an instance of its is already generated?

Thank you so much.

KiT

-- modified at 8:53 Thursday 29th September, 2005

By the way, here's my code:


private frmMcStock mcStock;

private void tscmdMcStock_Click(object sender, EventArgs e)
{
    //when it's closed, it can't be re-opened!
    if (mcStock == null)
    {
        mcStock = new frmMcStock();
        mcStock.MdiParent = this;
        mcStock.Show();
        //MessageBox.Show("a new form has been created");
    }
    else
    {
        mcStock.Focus();
        //MessageBox.Show("an existing form has been focused");
    }
}


-- modified at 9:03 Thursday 29th September, 2005
AnswerRe: check for a child form's existence Pin
S. Senthil Kumar28-Sep-05 22:35
S. Senthil Kumar28-Sep-05 22:35 
GeneralRe: check for a child form's existence Pin
AesopTurtle28-Sep-05 23:58
AesopTurtle28-Sep-05 23:58 
QuestionFast Copy\Cast of an array Pin
Gilad Kapelushnik28-Sep-05 20:52
Gilad Kapelushnik28-Sep-05 20:52 
AnswerRe: Fast Copy\Cast of an array Pin
Guffa28-Sep-05 21:21
Guffa28-Sep-05 21:21 
GeneralRe: Fast Copy\Cast of an array Pin
leppie29-Sep-05 3:38
leppie29-Sep-05 3:38 
GeneralRe: Fast Copy\Cast of an array Pin
Guffa29-Sep-05 22:24
Guffa29-Sep-05 22:24 
AnswerRe: Fast Copy\Cast of an array Pin
leppie29-Sep-05 3:34
leppie29-Sep-05 3:34 
GeneralRe: Fast Copy\Cast of an array Pin
Anonymous1-Oct-05 9:23
Anonymous1-Oct-05 9:23 
GeneralRe: Fast Copy\Cast of an array Pin
leppie1-Oct-05 16:11
leppie1-Oct-05 16:11 
QuestionMy Source Code is visible to all Pin
28-Sep-05 19:15
suss28-Sep-05 19:15 
AnswerRe: My Source Code is visible to all Pin
Ashok Dhamija28-Sep-05 19:31
Ashok Dhamija28-Sep-05 19:31 
GeneralRe: My Source Code is visible to all Pin
28-Sep-05 19:40
suss28-Sep-05 19:40 
GeneralRe: My Source Code is visible to all Pin
Ashok Dhamija29-Sep-05 0:18
Ashok Dhamija29-Sep-05 0:18 
GeneralRe: My Source Code is visible to all Pin
Dave Kreskowiak29-Sep-05 0:58
mveDave Kreskowiak29-Sep-05 0:58 
GeneralRe: My Source Code is visible to all Pin
S. Senthil Kumar29-Sep-05 4:48
S. Senthil Kumar29-Sep-05 4:48 
GeneralRe: My Source Code is visible to all Pin
sreejith ss nair28-Sep-05 20:26
sreejith ss nair28-Sep-05 20:26 
AnswerRe: My Source Code is visible to all Pin
leppie29-Sep-05 1:12
leppie29-Sep-05 1:12 

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.