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

C#

 
GeneralRe: Question For List Generics Pin
Sider8913-Jun-09 23:36
Sider8913-Jun-09 23:36 
GeneralRe: Question For List Generics Pin
0x3c014-Jun-09 0:57
0x3c014-Jun-09 0:57 
GeneralRe: Question For List Generics Pin
Sider8914-Jun-09 1:04
Sider8914-Jun-09 1:04 
GeneralRe: Question For List Generics Pin
0x3c014-Jun-09 1:36
0x3c014-Jun-09 1:36 
GeneralRe: Question For List Generics Pin
Sider8914-Jun-09 5:30
Sider8914-Jun-09 5:30 
GeneralRe: Question For List Generics Pin
0x3c014-Jun-09 5:47
0x3c014-Jun-09 5:47 
GeneralRe: Question For List Generics Pin
Sider8914-Jun-09 19:39
Sider8914-Jun-09 19:39 
QuestionClosing and recreating a form Pin
SimpleData13-Jun-09 22:43
SimpleData13-Jun-09 22:43 
Hi I have a Windows form called mainwindow in my project. After it completes what it does, it closes and then recreates itself. But as I have noticed lately it recreates but doesnt't close itself.

Here is my code:

private void RestartAll()
{
   // These are not that important, only to transfer the same properties of the form to the new form.
   depo.multipleformlocation=this.Location;
   depo.multipleform = true;
   depo.ekrangoruntusuadedi = 0;

   this.Hide();

   mainwindow _mainwindow = new mainwindow();
   _mainwindow.ShowDialog();

   this.Close();

   // Here is my temporary solution (putting old form's thread to sleep infinitely because it shouldn't keep doing what it does)
   Thread.Sleep(Timeout.Infinite);
}


How can I close(destroy) the old form completely and recreate that form? When I don't completely close that old form, because I do this closing and recreating process more than once my App's memory usage gets much higher.

Thanks in advance.
AnswerRe: Closing and recreating a form Pin
Henry Minute14-Jun-09 0:14
Henry Minute14-Jun-09 0:14 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 0:15
SimpleData14-Jun-09 0:15 
GeneralRe: Closing and recreating a form Pin
Henry Minute14-Jun-09 0:31
Henry Minute14-Jun-09 0:31 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 3:05
SimpleData14-Jun-09 3:05 
GeneralRe: Closing and recreating a form Pin
Henry Minute14-Jun-09 3:13
Henry Minute14-Jun-09 3:13 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 3:36
SimpleData14-Jun-09 3:36 
GeneralRe: Closing and recreating a form Pin
Henry Minute14-Jun-09 3:40
Henry Minute14-Jun-09 3:40 
AnswerRe: Closing and recreating a form Pin
Luc Pattyn14-Jun-09 4:14
sitebuilderLuc Pattyn14-Jun-09 4:14 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 4:43
SimpleData14-Jun-09 4:43 
GeneralRe: Closing and recreating a form Pin
Luc Pattyn14-Jun-09 4:49
sitebuilderLuc Pattyn14-Jun-09 4:49 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 4:52
SimpleData14-Jun-09 4:52 
GeneralRe: Closing and recreating a form Pin
Dave Kreskowiak14-Jun-09 4:58
mveDave Kreskowiak14-Jun-09 4:58 
GeneralRe: Closing and recreating a form Pin
Dave Kreskowiak14-Jun-09 4:55
mveDave Kreskowiak14-Jun-09 4:55 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 5:07
SimpleData14-Jun-09 5:07 
GeneralRe: Closing and recreating a form Pin
Dave Kreskowiak14-Jun-09 5:08
mveDave Kreskowiak14-Jun-09 5:08 
GeneralRe: Closing and recreating a form Pin
SimpleData14-Jun-09 5:13
SimpleData14-Jun-09 5:13 
GeneralRe: Closing and recreating a form Pin
DidiKunz14-Jun-09 7:29
DidiKunz14-Jun-09 7:29 

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.