Click here to Skip to main content
15,921,841 members
Home / Discussions / C#
   

C#

 
AnswerRe: Printable DataGrid Pin
Gary Stafford18-Jul-09 14:57
Gary Stafford18-Jul-09 14:57 
QuestionDisplay image in table Pin
nudma18-Jul-09 5:10
nudma18-Jul-09 5:10 
AnswerRe: Display image in table Pin
dan!sh 18-Jul-09 5:26
professional dan!sh 18-Jul-09 5:26 
GeneralRe: Display image in table Pin
nudma19-Jul-09 17:23
nudma19-Jul-09 17:23 
QuestionConnecting 2 computers over Internet Pin
Igor120118-Jul-09 3:56
Igor120118-Jul-09 3:56 
AnswerRe: Connecting 2 computers over Internet Pin
dan!sh 18-Jul-09 5:28
professional dan!sh 18-Jul-09 5:28 
GeneralRe: Connecting 2 computers over Internet Pin
Igor120118-Jul-09 5:44
Igor120118-Jul-09 5:44 
GeneralRe: Connecting 2 computers over Internet Pin
dan!sh 18-Jul-09 5:53
professional dan!sh 18-Jul-09 5:53 
GeneralRe: Connecting 2 computers over Internet Pin
Igor120118-Jul-09 6:03
Igor120118-Jul-09 6:03 
QuestionRe: Connecting 2 computers over Internet Pin
harold aptroot18-Jul-09 6:17
harold aptroot18-Jul-09 6:17 
AnswerRe: Connecting 2 computers over Internet Pin
Igor120118-Jul-09 6:38
Igor120118-Jul-09 6:38 
GeneralRe: Connecting 2 computers over Internet Pin
harold aptroot18-Jul-09 6:47
harold aptroot18-Jul-09 6:47 
GeneralRe: Connecting 2 computers over Internet Pin
Igor120118-Jul-09 7:17
Igor120118-Jul-09 7:17 
GeneralRe: Connecting 2 computers over Internet Pin
harold aptroot18-Jul-09 7:25
harold aptroot18-Jul-09 7:25 
GeneralRe: Connecting 2 computers over Internet Pin
Igor120118-Jul-09 7:32
Igor120118-Jul-09 7:32 
GeneralRe: Connecting 2 computers over Internet Pin
harold aptroot18-Jul-09 7:38
harold aptroot18-Jul-09 7:38 
GeneralRe: Connecting 2 computers over Internet Pin
Igor120118-Jul-09 7:51
Igor120118-Jul-09 7:51 
GeneralRe: Connecting 2 computers over Internet Pin
lemycanh18-Jul-09 17:57
lemycanh18-Jul-09 17:57 
GeneralRe: Connecting 2 computers over Internet Pin
Igor120119-Jul-09 3:12
Igor120119-Jul-09 3:12 
QuestionAera Glass Button in C# Pin
Arnab Datta18-Jul-09 3:11
Arnab Datta18-Jul-09 3:11 
AnswerRe: Aera Glass Button in C# Pin
Rozis18-Jul-09 4:14
Rozis18-Jul-09 4:14 
GeneralRe: Aera Glass Button in C# Pin
Igor120118-Jul-09 4:53
Igor120118-Jul-09 4:53 
AnswerRe: Aera Glass Button in C# Pin
Igor12015-Aug-09 18:12
Igor12015-Aug-09 18:12 
QuestionWorking with multiple forms Pin
SimpleData18-Jul-09 2:21
SimpleData18-Jul-09 2:21 
AnswerRe: Working with multiple forms Pin
Luc Pattyn18-Jul-09 3:07
sitebuilderLuc Pattyn18-Jul-09 3:07 
Hi,

Form.ShowDialog() waits for the new Form to be closed, so your Dispose statement isn't helping at all.
Try this:
this.Hide();
_Form2.ShowDialog();
this.Show();   // optional


Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]

The quality and detail of your question reflects on the effectiveness of the help you are likely to get.
Show formatted code inside PRE tags, and give clear symptoms when describing a problem.

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.