Remedy stuck finalizes without calling GC manually
We have a certain set of actions in our C# application which causes the RAM to continue to grow until the form closes. This form is long lived and some users will not close this form for the entire day.
Basically, Form frmRelationalSearch
calls Form frmCombinedSearch
to search a person on, and Form frmCombinedSearch
will return the person back to Form frmRelationalSearch
when Form frmCombinedSearch
closes. Form frmRelationalSearch
is the long lived form here, while Form frmCombinedSearch
seems to be the one causing problems.
For testing purposes, I've manually added in GC.Collect()
and GC.WaitForPendingFinalizers()
on each person search cycle to see if it is truly a memory leak. I've realized that the form frmCombinedSearch
does indeed get collected by the GC and probably is only living long because of it being in the finalizer queue. What I don't get is how to remedy the problem of the growing RAM usage without manually calling GC.Collect()
and GC.WaitForPendingFinalizers()
in our code wince this is a bad practice.
I've confirmed this using dotMemory and ANTS memory profilers.
How should I handle this? Is it acceptable to call the GC manually in this case?
This is the code right now:
private void btnSearch_Click(object sender, EventArgs e)
{
// Without these three lines, the RAM will continue to grow until
// this form (frmRelationalSearch) is closed.
// GC.Collect();
// GC.WaitForPendingFinalizers();
// GC.Collect();
frmCombinedSearch frm = new frmCombinedSearch();
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}
In both analyzers, frmCombinedSearch
gets retained because of the finalizer queue.
EDIT:
ShowInTab()
is non-blocking so I can't use a using
statement to dispose of it because it would just be disposed right after it's created.
c# winforms memory-leaks garbage-collection
add a comment |
We have a certain set of actions in our C# application which causes the RAM to continue to grow until the form closes. This form is long lived and some users will not close this form for the entire day.
Basically, Form frmRelationalSearch
calls Form frmCombinedSearch
to search a person on, and Form frmCombinedSearch
will return the person back to Form frmRelationalSearch
when Form frmCombinedSearch
closes. Form frmRelationalSearch
is the long lived form here, while Form frmCombinedSearch
seems to be the one causing problems.
For testing purposes, I've manually added in GC.Collect()
and GC.WaitForPendingFinalizers()
on each person search cycle to see if it is truly a memory leak. I've realized that the form frmCombinedSearch
does indeed get collected by the GC and probably is only living long because of it being in the finalizer queue. What I don't get is how to remedy the problem of the growing RAM usage without manually calling GC.Collect()
and GC.WaitForPendingFinalizers()
in our code wince this is a bad practice.
I've confirmed this using dotMemory and ANTS memory profilers.
How should I handle this? Is it acceptable to call the GC manually in this case?
This is the code right now:
private void btnSearch_Click(object sender, EventArgs e)
{
// Without these three lines, the RAM will continue to grow until
// this form (frmRelationalSearch) is closed.
// GC.Collect();
// GC.WaitForPendingFinalizers();
// GC.Collect();
frmCombinedSearch frm = new frmCombinedSearch();
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}
In both analyzers, frmCombinedSearch
gets retained because of the finalizer queue.
EDIT:
ShowInTab()
is non-blocking so I can't use a using
statement to dispose of it because it would just be disposed right after it's created.
c# winforms memory-leaks garbage-collection
Are you disposingfrmCombinedSearch
?
– Michael Randall
Jan 3 at 1:24
Can't you move thefrmCombinedSearch
Form logic into a UserControl? Since you apparently want to show that Form inside a TabControl (is it?). So you just need to create the UC once and you can manage and dispose of its resources directly. Btw, you're not showing how/when you're disposing of thefrm
object(s).
– Jimi
Jan 3 at 1:26
frmCombineSearch
hasDispose
called on the forms close event from the designer file. I can't use ausing
statement because if I do, then I will dispose of the form entirely when it's still visible in the TabControl. I would just be opening it and closing it right after.
– Jimenemex
Jan 3 at 1:31
Yes, you can and no you cannot calldispose()
inside the Form class. The class disposes of the resources it initializes, not of itself. You need to dispose of thefrm
object you create in the caller class (frmRelationalSearch
).
– Jimi
Jan 3 at 1:36
frmRelationalSearch
is Disposed when it's closed because it's shown withform.Show()
inside theShowInTab()
method. After a search is done, then it will close.
– Jimenemex
Jan 3 at 1:48
add a comment |
We have a certain set of actions in our C# application which causes the RAM to continue to grow until the form closes. This form is long lived and some users will not close this form for the entire day.
Basically, Form frmRelationalSearch
calls Form frmCombinedSearch
to search a person on, and Form frmCombinedSearch
will return the person back to Form frmRelationalSearch
when Form frmCombinedSearch
closes. Form frmRelationalSearch
is the long lived form here, while Form frmCombinedSearch
seems to be the one causing problems.
For testing purposes, I've manually added in GC.Collect()
and GC.WaitForPendingFinalizers()
on each person search cycle to see if it is truly a memory leak. I've realized that the form frmCombinedSearch
does indeed get collected by the GC and probably is only living long because of it being in the finalizer queue. What I don't get is how to remedy the problem of the growing RAM usage without manually calling GC.Collect()
and GC.WaitForPendingFinalizers()
in our code wince this is a bad practice.
I've confirmed this using dotMemory and ANTS memory profilers.
How should I handle this? Is it acceptable to call the GC manually in this case?
This is the code right now:
private void btnSearch_Click(object sender, EventArgs e)
{
// Without these three lines, the RAM will continue to grow until
// this form (frmRelationalSearch) is closed.
// GC.Collect();
// GC.WaitForPendingFinalizers();
// GC.Collect();
frmCombinedSearch frm = new frmCombinedSearch();
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}
In both analyzers, frmCombinedSearch
gets retained because of the finalizer queue.
EDIT:
ShowInTab()
is non-blocking so I can't use a using
statement to dispose of it because it would just be disposed right after it's created.
c# winforms memory-leaks garbage-collection
We have a certain set of actions in our C# application which causes the RAM to continue to grow until the form closes. This form is long lived and some users will not close this form for the entire day.
Basically, Form frmRelationalSearch
calls Form frmCombinedSearch
to search a person on, and Form frmCombinedSearch
will return the person back to Form frmRelationalSearch
when Form frmCombinedSearch
closes. Form frmRelationalSearch
is the long lived form here, while Form frmCombinedSearch
seems to be the one causing problems.
For testing purposes, I've manually added in GC.Collect()
and GC.WaitForPendingFinalizers()
on each person search cycle to see if it is truly a memory leak. I've realized that the form frmCombinedSearch
does indeed get collected by the GC and probably is only living long because of it being in the finalizer queue. What I don't get is how to remedy the problem of the growing RAM usage without manually calling GC.Collect()
and GC.WaitForPendingFinalizers()
in our code wince this is a bad practice.
I've confirmed this using dotMemory and ANTS memory profilers.
How should I handle this? Is it acceptable to call the GC manually in this case?
This is the code right now:
private void btnSearch_Click(object sender, EventArgs e)
{
// Without these three lines, the RAM will continue to grow until
// this form (frmRelationalSearch) is closed.
// GC.Collect();
// GC.WaitForPendingFinalizers();
// GC.Collect();
frmCombinedSearch frm = new frmCombinedSearch();
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}
In both analyzers, frmCombinedSearch
gets retained because of the finalizer queue.
EDIT:
ShowInTab()
is non-blocking so I can't use a using
statement to dispose of it because it would just be disposed right after it's created.
c# winforms memory-leaks garbage-collection
c# winforms memory-leaks garbage-collection
edited Jan 3 at 14:21
Jimenemex
asked Jan 3 at 1:10


JimenemexJimenemex
2,1071525
2,1071525
Are you disposingfrmCombinedSearch
?
– Michael Randall
Jan 3 at 1:24
Can't you move thefrmCombinedSearch
Form logic into a UserControl? Since you apparently want to show that Form inside a TabControl (is it?). So you just need to create the UC once and you can manage and dispose of its resources directly. Btw, you're not showing how/when you're disposing of thefrm
object(s).
– Jimi
Jan 3 at 1:26
frmCombineSearch
hasDispose
called on the forms close event from the designer file. I can't use ausing
statement because if I do, then I will dispose of the form entirely when it's still visible in the TabControl. I would just be opening it and closing it right after.
– Jimenemex
Jan 3 at 1:31
Yes, you can and no you cannot calldispose()
inside the Form class. The class disposes of the resources it initializes, not of itself. You need to dispose of thefrm
object you create in the caller class (frmRelationalSearch
).
– Jimi
Jan 3 at 1:36
frmRelationalSearch
is Disposed when it's closed because it's shown withform.Show()
inside theShowInTab()
method. After a search is done, then it will close.
– Jimenemex
Jan 3 at 1:48
add a comment |
Are you disposingfrmCombinedSearch
?
– Michael Randall
Jan 3 at 1:24
Can't you move thefrmCombinedSearch
Form logic into a UserControl? Since you apparently want to show that Form inside a TabControl (is it?). So you just need to create the UC once and you can manage and dispose of its resources directly. Btw, you're not showing how/when you're disposing of thefrm
object(s).
– Jimi
Jan 3 at 1:26
frmCombineSearch
hasDispose
called on the forms close event from the designer file. I can't use ausing
statement because if I do, then I will dispose of the form entirely when it's still visible in the TabControl. I would just be opening it and closing it right after.
– Jimenemex
Jan 3 at 1:31
Yes, you can and no you cannot calldispose()
inside the Form class. The class disposes of the resources it initializes, not of itself. You need to dispose of thefrm
object you create in the caller class (frmRelationalSearch
).
– Jimi
Jan 3 at 1:36
frmRelationalSearch
is Disposed when it's closed because it's shown withform.Show()
inside theShowInTab()
method. After a search is done, then it will close.
– Jimenemex
Jan 3 at 1:48
Are you disposing
frmCombinedSearch
?– Michael Randall
Jan 3 at 1:24
Are you disposing
frmCombinedSearch
?– Michael Randall
Jan 3 at 1:24
Can't you move the
frmCombinedSearch
Form logic into a UserControl? Since you apparently want to show that Form inside a TabControl (is it?). So you just need to create the UC once and you can manage and dispose of its resources directly. Btw, you're not showing how/when you're disposing of the frm
object(s).– Jimi
Jan 3 at 1:26
Can't you move the
frmCombinedSearch
Form logic into a UserControl? Since you apparently want to show that Form inside a TabControl (is it?). So you just need to create the UC once and you can manage and dispose of its resources directly. Btw, you're not showing how/when you're disposing of the frm
object(s).– Jimi
Jan 3 at 1:26
frmCombineSearch
has Dispose
called on the forms close event from the designer file. I can't use a using
statement because if I do, then I will dispose of the form entirely when it's still visible in the TabControl. I would just be opening it and closing it right after.– Jimenemex
Jan 3 at 1:31
frmCombineSearch
has Dispose
called on the forms close event from the designer file. I can't use a using
statement because if I do, then I will dispose of the form entirely when it's still visible in the TabControl. I would just be opening it and closing it right after.– Jimenemex
Jan 3 at 1:31
Yes, you can and no you cannot call
dispose()
inside the Form class. The class disposes of the resources it initializes, not of itself. You need to dispose of the frm
object you create in the caller class (frmRelationalSearch
).– Jimi
Jan 3 at 1:36
Yes, you can and no you cannot call
dispose()
inside the Form class. The class disposes of the resources it initializes, not of itself. You need to dispose of the frm
object you create in the caller class (frmRelationalSearch
).– Jimi
Jan 3 at 1:36
frmRelationalSearch
is Disposed when it's closed because it's shown with form.Show()
inside the ShowInTab()
method. After a search is done, then it will close.– Jimenemex
Jan 3 at 1:48
frmRelationalSearch
is Disposed when it's closed because it's shown with form.Show()
inside the ShowInTab()
method. After a search is done, then it will close.– Jimenemex
Jan 3 at 1:48
add a comment |
2 Answers
2
active
oldest
votes
WinForms need to be closed or disposed (link). I recommend using using
.
private void btnSearch_Click(object sender, EventArgs e)
{
using (frmCombinedSearch frm = new frmCombinedSearch())
{
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}
}
add a comment |
Are frmCombinedSearch
and frmRelationalSearch
disposable? If it is you can implement a using so it is collected once closed.
something like below:
using(frmCombinedSearch frm = new frmCombinedSearch()){
try {
frm.ShowInTab(this.ParentTabPage); }
catch(Exception ex) {
this.ShowException(ex); } }
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54015151%2fremedy-stuck-finalizes-without-calling-gc-manually%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
WinForms need to be closed or disposed (link). I recommend using using
.
private void btnSearch_Click(object sender, EventArgs e)
{
using (frmCombinedSearch frm = new frmCombinedSearch())
{
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}
}
add a comment |
WinForms need to be closed or disposed (link). I recommend using using
.
private void btnSearch_Click(object sender, EventArgs e)
{
using (frmCombinedSearch frm = new frmCombinedSearch())
{
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}
}
add a comment |
WinForms need to be closed or disposed (link). I recommend using using
.
private void btnSearch_Click(object sender, EventArgs e)
{
using (frmCombinedSearch frm = new frmCombinedSearch())
{
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}
}
WinForms need to be closed or disposed (link). I recommend using using
.
private void btnSearch_Click(object sender, EventArgs e)
{
using (frmCombinedSearch frm = new frmCombinedSearch())
{
try
{
// Custom code which just shows the form in the current tab
frm.ShowInTab(this.ParentTabPage);
}
catch (Exception ex)
{
this.ShowException(ex);
}
}
}
answered Jan 3 at 1:28
John WuJohn Wu
31.4k42754
31.4k42754
add a comment |
add a comment |
Are frmCombinedSearch
and frmRelationalSearch
disposable? If it is you can implement a using so it is collected once closed.
something like below:
using(frmCombinedSearch frm = new frmCombinedSearch()){
try {
frm.ShowInTab(this.ParentTabPage); }
catch(Exception ex) {
this.ShowException(ex); } }
add a comment |
Are frmCombinedSearch
and frmRelationalSearch
disposable? If it is you can implement a using so it is collected once closed.
something like below:
using(frmCombinedSearch frm = new frmCombinedSearch()){
try {
frm.ShowInTab(this.ParentTabPage); }
catch(Exception ex) {
this.ShowException(ex); } }
add a comment |
Are frmCombinedSearch
and frmRelationalSearch
disposable? If it is you can implement a using so it is collected once closed.
something like below:
using(frmCombinedSearch frm = new frmCombinedSearch()){
try {
frm.ShowInTab(this.ParentTabPage); }
catch(Exception ex) {
this.ShowException(ex); } }
Are frmCombinedSearch
and frmRelationalSearch
disposable? If it is you can implement a using so it is collected once closed.
something like below:
using(frmCombinedSearch frm = new frmCombinedSearch()){
try {
frm.ShowInTab(this.ParentTabPage); }
catch(Exception ex) {
this.ShowException(ex); } }
answered Jan 3 at 1:30


SlipochSlipoch
417313
417313
add a comment |
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54015151%2fremedy-stuck-finalizes-without-calling-gc-manually%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Are you disposing
frmCombinedSearch
?– Michael Randall
Jan 3 at 1:24
Can't you move the
frmCombinedSearch
Form logic into a UserControl? Since you apparently want to show that Form inside a TabControl (is it?). So you just need to create the UC once and you can manage and dispose of its resources directly. Btw, you're not showing how/when you're disposing of thefrm
object(s).– Jimi
Jan 3 at 1:26
frmCombineSearch
hasDispose
called on the forms close event from the designer file. I can't use ausing
statement because if I do, then I will dispose of the form entirely when it's still visible in the TabControl. I would just be opening it and closing it right after.– Jimenemex
Jan 3 at 1:31
Yes, you can and no you cannot call
dispose()
inside the Form class. The class disposes of the resources it initializes, not of itself. You need to dispose of thefrm
object you create in the caller class (frmRelationalSearch
).– Jimi
Jan 3 at 1:36
frmRelationalSearch
is Disposed when it's closed because it's shown withform.Show()
inside theShowInTab()
method. After a search is done, then it will close.– Jimenemex
Jan 3 at 1:48