0
votes
2answers
99 views
Does garbage collector call Dispose()?
I thought the GC would call Dispose eventually if your program did not but that you should call Dispose() in your program just to make the cleanup deterministic.
However, from my …
0
votes
3answers
57 views
.NET WinForms application not releasing components?
Hello:
I'm working with a .NET 2.0 WinForms application in C#.
I noticed something that I thought to be strange during the tear down of my application. In the designer generated …
-1
votes
2answers
58 views
C# Why Accesing ListBox.SelectedItem.ToString(), the form tries to dispose?
Hey Guys.
I'm developing a small POS for a university proyect.
I have a form who acts as a POS main window, with a datagrid and so on. Also, i have one form who is the Sensitive se …
0
votes
2answers
47 views
Javascript: know when an object will be garbaged
Hi all, is there a way to know when an object will be disposed by GC?
My object (call it A) write some variables in a global array-object, so when the object will be garbaged its …
2
votes
3answers
92 views
Purpose of Dispose calling Dispose(IsDisposing) pattern in C#?
Here is code from MSDN. I don't understand why the work isn't just done in the regular Dispose() method here. What is the purpose of having the Dispose(bool) method? Who would e …
0
votes
1answer
28 views
Am I responsible for Disposing a BackgroundImage?
Hi, I have a windows form where I set the BackgroundImage property to a custom bitmap image.
private Image MakeCustomBackground()
{
Bitmap result = new Bitmap(100, 100);
…
1
vote
5answers
52 views
Do I need to call Graphics.Dispose()?
In a VB.NET program I'm creating a new bitmap image, I then call Graphics.FromImage to get a Graphics object to draw on the bitmap. The image is then displayed to the user.
All th …
0
votes
6answers
50 views
Strange GDI+ behaviour.
I have made a method to CompressImageSize according to Image quality. The code for it is
public static Image CompressImage(string imagePath, long quality)
{
Image srcImg = Loa …
1
vote
3answers
92 views
Proper cleanup of WPF user controls
I am relatively new to WPF, and some things with it are quite foreign to me. For one, unlike Windows Forms, the WPF control hierarchy does not support IDisposable. In Windows Forms …
1
vote
2answers
58 views
Event Sender Gets Disposed In Client’s Event Handler Code
Hello,
I'm facing the following situation (C#/.Net here, but I think it's a general problem):
Some of our object types (which are collections) are disposable types (IDisposable …
3
votes
1answer
41 views
Does a wrapper class calling a COM component through C# need to implement the Dispose pattern?
I have a class written in c# which is acting as a wrapper around a COM component. The COM component is early bound and the RCW has been generated by Visual Studio. Should I impleme …
0
votes
4answers
99 views
How do I dispose all of the controls in a panel or form at ONCE??? c#
is there a way to do this?
2
votes
3answers
105 views
Is re-using GDI+ objects bad practice? (or: How to use many nested using blocks without getting headaches?)
I'm currently writing a fairly complex paint method for a user control, involving a fair amount of drawing code. I know that all GDI+ resources need to be properly disposed so I wr …
1
vote
3answers
134 views
C# Not Disposing controls like I told it to…
I have a Panel control. And inside the panel users can add combobox's, textbox's labels etc and drag them around and stuff, and there's a Delete button on my form where if they cli …
0
votes
3answers
74 views
Handling with temporary file stream
Say I want to define a TempFileStream class that creates a temporary file using Path.GetTempFileName() method. A temporary file must be deleted when TempFileStream's object is no l …
