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

C#

 
GeneralRe: Shell Output Pin
Nazadus6-Jul-05 1:51
Nazadus6-Jul-05 1:51 
GeneralDisplaying Write statements in Debuger Output window Pin
zaboboa5-Jul-05 9:24
zaboboa5-Jul-05 9:24 
GeneralRe: Displaying Write statements in Debuger Output window Pin
Colin Angus Mackay5-Jul-05 12:08
Colin Angus Mackay5-Jul-05 12:08 
GeneralChild form, which stays in front Pin
Ronen Kfir5-Jul-05 9:18
Ronen Kfir5-Jul-05 9:18 
GeneralRe: Child form, which stays in front Pin
MoustafaS5-Jul-05 12:43
MoustafaS5-Jul-05 12:43 
GeneralChild form, which stays in front Pin
sea#5-Jul-05 9:17
sea#5-Jul-05 9:17 
GeneralRe: Child form, which stays in front Pin
ZejulioZ5-Jul-05 16:12
ZejulioZ5-Jul-05 16:12 
GeneralPassing the values among Forms Pin
Anonymous5-Jul-05 9:05
Anonymous5-Jul-05 9:05 
I have Form1 (main form) containing menues, and etc...
Then by clicking on the menu options in Form1, I invoke the children of Form1 :

private void menuNew_Click(object sender, System.EventArgs e)
{
string a = "New_Click";
Form2 fNew = new Form2(a);
fNew.MdiParent = this;
this.menuNew.Enabled = false;
fNew.Show();




}
something like that.

When I am ready to close fNew form, how do I set menuNew back to enabled.
I know you can do it prety easily using ShowDialog, but I have to do it with MdiParent settings.

Thank you
GeneralRe: Passing the values among Forms Pin
Judah Gabriel Himango5-Jul-05 9:07
sponsorJudah Gabriel Himango5-Jul-05 9:07 
GeneralRe: Passing the values among Forms Pin
LongRange.Shooter6-Jul-05 9:47
LongRange.Shooter6-Jul-05 9:47 
GeneralRead data from CryptoStream Pin
kani985-Jul-05 7:37
kani985-Jul-05 7:37 
GeneralRe: Read data from CryptoStream Pin
Guffa5-Jul-05 8:42
Guffa5-Jul-05 8:42 
GeneralQuestion regarding the DLL files Pin
amitmohanty5-Jul-05 7:37
amitmohanty5-Jul-05 7:37 
GeneralRe: Question regarding the DLL files Pin
Dave Kreskowiak5-Jul-05 7:44
mveDave Kreskowiak5-Jul-05 7:44 
GeneralRe: Question regarding the DLL files Pin
amitmohanty7-Jul-05 16:03
amitmohanty7-Jul-05 16:03 
GeneralRe: Question regarding the DLL files Pin
Dave Kreskowiak8-Jul-05 1:20
mveDave Kreskowiak8-Jul-05 1:20 
GeneralC# Winform WebClient identification Pin
papouAlain5-Jul-05 7:17
papouAlain5-Jul-05 7:17 
GeneralRe: C# Winform WebClient identification Pin
papouAlain6-Jul-05 4:12
papouAlain6-Jul-05 4:12 
Generalprogress bar Pin
steve_rm5-Jul-05 6:42
steve_rm5-Jul-05 6:42 
GeneralRe: progress bar Pin
Alex Korchemniy5-Jul-05 7:29
Alex Korchemniy5-Jul-05 7:29 
GeneralRe: progress bar Pin
Dave Kreskowiak5-Jul-05 7:29
mveDave Kreskowiak5-Jul-05 7:29 
GeneralRe: progress bar Pin
Roy Heil5-Jul-05 10:32
professionalRoy Heil5-Jul-05 10:32 
GeneralProcess.Start Pin
StrayGrey5-Jul-05 5:51
StrayGrey5-Jul-05 5:51 
GeneralRe: Process.Start Pin
Dave Kreskowiak5-Jul-05 6:16
mveDave Kreskowiak5-Jul-05 6:16 
Generalone little and stupid question Pin
Umair Ahmad khan5-Jul-05 5:45
Umair Ahmad khan5-Jul-05 5:45 

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.