Click here to Skip to main content
15,880,469 members
Home / Discussions / C#
   

C#

 
AnswerRe: Windows Mobile Pin
Pete O'Hanlon19-Feb-13 6:00
mvePete O'Hanlon19-Feb-13 6:00 
GeneralRe: Windows Mobile Pin
aymen Tn19-Feb-13 22:42
aymen Tn19-Feb-13 22:42 
AnswerRe: Windows Mobile Pin
Pete O'Hanlon20-Feb-13 2:12
mvePete O'Hanlon20-Feb-13 2:12 
QuestionHow to create dynamic menu Pin
ebrahim kalteh19-Feb-13 1:36
ebrahim kalteh19-Feb-13 1:36 
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 
Hi people,
I've a doubt:
Today I work with Java, but I started teaching C# to beginners.
I created two forms, each one has a button on the middle of the form. When I click the button of the first form, the second form appears and the first form disappears. When I click the button from second form, (the one that appeared), the first form appears and the second form disappears.
It's just to teach how the methods .Show() and .Hide() works. Now it's working, but I've a problem: When my software is running over Visual Studio, normally if I were, for example, working with just a form, clicking on (X) to close the app, the IDE came back to development mode. But on my app, after I show some punch of clicks to go to a form and to came back to the other, even if I had been on any of the forms (first or second), if I click to close the app, It does not happens.... I have to click Shift+Control+F5 to came back to development mode, and still doesn't happens again, the form appears, and I have to close it (again), so THEN I go to development mode... Weird.... Could someone help-me ?
I'm hiding the first form, and opening the other using
<pre lang="c#">
Form form2 = new Form();
form2.Show();
this.Hide();

and inside the Form2:
<pre lang="c#">
Form form1 = new Form();
form1.Show();
this.Hide();

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 
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 

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.