Click here to Skip to main content
15,888,610 members
Home / Discussions / C#
   

C#

 
AnswerRe: How to create dynamic menu Pin
BobJanova19-Feb-13 3:06
BobJanova19-Feb-13 3:06 
GeneralRe: How to create dynamic menu Pin
ebrahim kalteh19-Feb-13 8:13
ebrahim kalteh19-Feb-13 8:13 
GeneralRe: How to create dynamic menu Pin
Jibesh19-Feb-13 8:58
professionalJibesh19-Feb-13 8:58 
QuestionCLOSING FORMS Pin
airmigjr19-Feb-13 0:29
airmigjr19-Feb-13 0:29 
AnswerRe: CLOSING FORMS Pin
N a v a n e e t h19-Feb-13 1:05
N a v a n e e t h19-Feb-13 1:05 
AnswerRe: CLOSING FORMS PinPopular
V.19-Feb-13 1:23
professionalV.19-Feb-13 1:23 
GeneralRe: CLOSING FORMS Pin
Jegan Thiyagesan19-Feb-13 3:26
Jegan Thiyagesan19-Feb-13 3:26 
AnswerRe: CLOSING FORMS Pin
Dave Kreskowiak19-Feb-13 2:11
mveDave Kreskowiak19-Feb-13 2:11 
You didn't close the startup form. You closed another INSTANCE of Form1.

You should not have used Show to show Form2. You should have used ShowDialog. That way, when Form2 closes, the original instance of Form1 gets control back. Though, the down-side to using this is that Form1 code blocks until Form2 closes.

Form2 form2 = new Form();
this.Hide();
form2.ShowDialog();    ' Blocks until form2 closes
this.Show();


GeneralRe: CLOSING FORMS Pin
airmigjr19-Feb-13 3:25
airmigjr19-Feb-13 3:25 
GeneralRe: CLOSING FORMS Pin
Dave Kreskowiak19-Feb-13 10:25
mveDave Kreskowiak19-Feb-13 10:25 
AnswerRe: CLOSING FORMS Pin
BobJanova19-Feb-13 3:03
BobJanova19-Feb-13 3:03 
AnswerRe: CLOSING FORMS Pin
Shameel20-Feb-13 4:47
professionalShameel20-Feb-13 4:47 
QuestionSetup Package for C# Windows application Pin
Zeyad Jalil18-Feb-13 23:02
professionalZeyad Jalil18-Feb-13 23:02 
AnswerRe: Setup Package for C# Windows application Pin
N a v a n e e t h19-Feb-13 1:08
N a v a n e e t h19-Feb-13 1:08 
Questionc# 64 bit .net c++ dll reference problem Pin
peter46218-Feb-13 22:54
peter46218-Feb-13 22:54 
AnswerRe: c# 64 bit .net c++ dll reference problem Pin
N a v a n e e t h19-Feb-13 1:02
N a v a n e e t h19-Feb-13 1:02 
AnswerRe: c# 64 bit .net c++ dll reference problem Pin
Dave Kreskowiak19-Feb-13 2:16
mveDave Kreskowiak19-Feb-13 2:16 
GeneralRe: c# 64 bit .net c++ dll reference problem Pin
harold aptroot19-Feb-13 3:19
harold aptroot19-Feb-13 3:19 
QuestionHow to read out whole static text present on external application's Input boxes or message boxes in C# Pin
sham bhand18-Feb-13 20:51
sham bhand18-Feb-13 20:51 
AnswerRe: How to read out whole static text present on external application's Input boxes or message boxes in C# Pin
N a v a n e e t h18-Feb-13 22:27
N a v a n e e t h18-Feb-13 22:27 
AnswerRe: How to read out whole static text present on external application's Input boxes or message boxes in C# Pin
Gerry Schmitz19-Feb-13 20:27
mveGerry Schmitz19-Feb-13 20:27 
GeneralRe: How to read out whole static text present on external application's Input boxes or message boxes in C# Pin
sham bhand21-Feb-13 4:48
sham bhand21-Feb-13 4:48 
GeneralRe: How to read out whole static text present on external application's Input boxes or message boxes in C# Pin
Gerry Schmitz21-Feb-13 8:40
mveGerry Schmitz21-Feb-13 8:40 
Question[SOLVED] Not Getting CPU Usage Pin
AmbiguousName18-Feb-13 18:51
AmbiguousName18-Feb-13 18:51 
QuestionC# run a process Pin
classy_dog18-Feb-13 7:02
classy_dog18-Feb-13 7:02 

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.