Click here to Skip to main content
15,891,513 members
Home / Discussions / C#
   

C#

 
AnswerRe: App.Config Sharing (sort of) Pin
Miszou13-May-08 7:12
Miszou13-May-08 7:12 
GeneralRe: App.Config Sharing (sort of) Pin
#realJSOP13-May-08 8:31
mve#realJSOP13-May-08 8:31 
GeneralRe: App.Config Sharing (sort of) Pin
Miszou13-May-08 9:04
Miszou13-May-08 9:04 
GeneralRe: App.Config Sharing (sort of) Pin
#realJSOP13-May-08 10:57
mve#realJSOP13-May-08 10:57 
GeneralRe: App.Config Sharing (sort of) Pin
Miszou14-May-08 6:45
Miszou14-May-08 6:45 
QuestionException Handling Pin
jchigg200013-May-08 5:13
jchigg200013-May-08 5:13 
AnswerRe: Exception Handling Pin
jchigg200013-May-08 5:43
jchigg200013-May-08 5:43 
QuestionMenuStrip -> Open new child form Pin
benjamin yap13-May-08 4:31
benjamin yap13-May-08 4:31 
Hi, i got my menu like this

File | Staff | Catalogue | Inventory | etc etc etc


For example, when i click Staff, i have Register staff, modify staff, delete staff, search staff

Lets say i click Search staff, the below code is executed. But when i click search staff again, 2 of the same form appear. How do i prevent that, if one of the search staff is open, cannot open again

private void mnuSearchStaff_Click(object sender, EventArgs e)
{
FrmSearchStaff childSearchStaff = new FrmSearchStaff();
childSearchStaff.MdiParent = this;
childSearchStaff.Show();
}
AnswerRe: MenuStrip -> Open new child form Pin
Gareth H13-May-08 4:38
Gareth H13-May-08 4:38 
GeneralRe: MenuStrip -> Open new child form Pin
benjamin yap13-May-08 4:48
benjamin yap13-May-08 4:48 
GeneralRe: MenuStrip -> Open new child form Pin
Gareth H13-May-08 4:52
Gareth H13-May-08 4:52 
GeneralRe: MenuStrip -> Open new child form Pin
benjamin yap13-May-08 5:00
benjamin yap13-May-08 5:00 
AnswerRe: MenuStrip -> Open new child form Pin
darkelv13-May-08 5:13
darkelv13-May-08 5:13 
GeneralRe: MenuStrip -> Open new child form Pin
benjamin yap13-May-08 5:24
benjamin yap13-May-08 5:24 
GeneralRe: MenuStrip -> Open new child form Pin
darkelv13-May-08 17:33
darkelv13-May-08 17:33 
QuestionResizing form nad positioning controls Pin
benjamin yap13-May-08 4:16
benjamin yap13-May-08 4:16 
QuestionXMLSerializer Pin
George_George13-May-08 4:12
George_George13-May-08 4:12 
AnswerRe: XMLSerializer Pin
led mike13-May-08 4:29
led mike13-May-08 4:29 
GeneralRe: XMLSerializer Pin
George_George13-May-08 4:49
George_George13-May-08 4:49 
AnswerRe: XMLSerializer Pin
Nissim Salomon13-May-08 4:40
Nissim Salomon13-May-08 4:40 
GeneralRe: XMLSerializer Pin
George_George13-May-08 4:48
George_George13-May-08 4:48 
QuestionBeginner's C# Book Pin
Ken Mazaika13-May-08 4:11
Ken Mazaika13-May-08 4:11 
AnswerRe: Beginner's C# Book Pin
CPallini13-May-08 4:21
mveCPallini13-May-08 4:21 
GeneralRe: Beginner's C# Book [modified] Pin
carbon_golem13-May-08 5:14
carbon_golem13-May-08 5:14 
GeneralRe: Beginner's C# Book Pin
CPallini13-May-08 5:20
mveCPallini13-May-08 5:20 

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.