Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources

learn more… | top users | synonyms

1
vote
2answers
52 views

Dispose() for cleaning up managed resources?

In this answer I found, Cleanup the unmanaged resources in the Finalize method and the managed ones in the Dispose method, when the Dispose/Finalize pattern has been used in your code. And ...
0
votes
1answer
25 views

Removing a TextBox from the Controls collection has no effect

Basically what I do is: Add (n) textboxes via a button click. When I again click on it, this code runs: foreach (Control c in this.Controls) { TextBox tb = c as TextBox; if (tb != null) ...
0
votes
2answers
33 views

How certain types like Image can be Dispose using the Dispose() method

Let's say I have a large Image object, if I call the Dispose() method of this object I can easily see the memory consumption of my application be reduced, since I just cleared the object from memory. ...
10
votes
3answers
157 views

Why does this variable need to be set to null after the object is disposed?

The documentation on PowerShell here has the following interesting comment in it: PowerShell powershell = PowerShell.Create(); using (powershell) { //... } // Even after disposing of the ...
0
votes
2answers
48 views

Types that own disposable fields should be disposable. how to solve this warning?

I tried using Run Code Analysis option in VisualStudio 2012, as a result of it I got a warning as CA1001 Types that own disposable fields should be disposable Implement IDisposable on ...
2
votes
2answers
48 views

Why is the Dispose() method not available on my IDisposable object?

I have a class with this field: private WcfChannelFactory<IPrestoService> _channelFactory; In the Dispose() method, I'm doing this: if (_channelFactory != null) { _channelFactory.Dispose(); ...
1
vote
1answer
21 views

Form do not disappear on closing java application

I created a hook that excute some operation when the form is closed: Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() { public void run() { ...
3
votes
2answers
74 views

Tricky IDisposable Issue

I'm trying to abstract/encapsulate the following code so all client calls don't need to repeat this code. For example, this is a call, from a view model (MVVM) to a WCF service: using (var ...
2
votes
1answer
22 views

Disposing Graphics2D drawing after it is drawn

For a game that I'm working on I need to draw a rectangle that gets smaller and smaller. I have figured out how to draw the rectangle smaller by using a swing Timer like this: timer = new ...
0
votes
0answers
49 views

CFString Dispose random crash

I am trying to create a thumbnail image of pdf in Monotouch but the app crashes sometimes and throws below error. Stacktrace: at MonoTouch.CoreFoundation.CFString.Dispose () [0x00000] in ...
0
votes
2answers
22 views

vb.net Program not closing

So this is my code in a Function of a Module. I'd like to close the program where I call Application.Exit, but it keeps running. Is there a good reason for that? Dim OpenFileDialog1 As New ...
0
votes
0answers
7 views

JFrame Not Disposing

I am attempting to dispose my JFrame on button click. However, when I click the button everything executes except the JFrame doesn't close! Why is this? Is it a problem with another JFrame opening ...
0
votes
0answers
22 views

How do I dispose a window thats loading already

I am trying to dispose a window while it is still loading components but it doesn't work. The dispose method works when I press the back button on the window. I am checking for the first time a user ...
1
vote
1answer
32 views

DbCommand and connection - why does dispose not close underlying connection?

I've seen this in some legacy code which generates code analysis warnings: Database db = DatabaseFactory.CreateDatabase(strDBCon); DbCommand dbCommand = db.GetSqlStringCommand(sb.ToString()); ...
0
votes
1answer
48 views

Disposing entity framework dbcontext in singleton class (StructureMap)

In my application i am using StructureMap with EntityFramework. Well, my ioc config looks like : x.For<IDbContext>().Use(c => new DbContext(AppSettings.ConnectionString)); ...
0
votes
1answer
49 views

Java Datasource, how to dispose it

I'm working on a webapp where i manually create my DataSource. (also see my other question why: How to use Spring to manage connection to multiple databases) because I need to connect to other ...
1
vote
3answers
78 views

C# Dispose object after using in list?

I have a class and this class has "value" variable contain a big data reading from file : public class MyClass : IDisposable { public string name {get; set;} public string value {get; set;} ...
0
votes
0answers
23 views

How to handle a db connection for SqlFu DbAccess?

What is the correct way of managing the connection for DbAccess object provided by micro-orm SqlFu? I know it opens the connection automatically when you try to query the database, but does it close ...
1
vote
1answer
49 views

Do I win memory by explicitly disposing imageView.Image?

I have this code in my app: var newImage = // ... if (imageView.Image != null && imageView.Image != newImage) imageView.Image.Dispose (); imageView.Image = newImage; I have three ...
2
votes
1answer
52 views

No Way to Close SqlConnection

I know this is an old question. Thousands of statements on Google say Connection will be closed in Dispose(). However, who did really verify that? I found that a SqlConnection is no way to close. I ...
0
votes
0answers
84 views

Closing, disposing a modal form (ShowDialog)

I am fairly new to VB, i'm trying to make a program with multiple forms, there are four in total (i'm only including 2 important forms for the question). FormMenu is the startup form, the program ends ...
3
votes
2answers
71 views

Should I use several nested “using” stements?

I'm wondering whether I should use using statement inside another? For example: using(SqlConnection con = new SqlConnection(...)) { ... using(SqlCommand cmd = new SqlCommand(...)) { ...
2
votes
2answers
80 views

Why is my overridden Dispose not called?

I'm currently working with the TextWriter class from .NET Compact Framework 3.5 to write log entries to a file. Thats a very common and simply task and there is no problem with that. But using the ...
2
votes
1answer
78 views

Dispose with using C# - full implementation

how can you implement the Dispose method after using "using" on a MemoryStream object in a class that implements IDisposable? public class ControlToByte :IDisposable { public static byte[] ...
0
votes
1answer
45 views

Why is this overridden method grayified?

In the code I have to maintain ("Lucky Man" by ELP definitely does not fit this soundtrack), I see this, grayed out (not commented out -- grayed out by the compiler or Resharper): protected override ...
1
vote
1answer
66 views

Using .Dispose in a thread safe way

In a previous question I was given an awesome solution to a memory leak issue I was experiencing. There is one problem though- the solution involves disposing of unnecessary data in an event handler ...
0
votes
4answers
120 views

Whether all objects which are not manually disposed be automatically disposed when program terminates?

Objects like FileStream, CryptoStream etc ... Or I must manually dispose them. I'm using Thread.IsBackground = true to terminate my working thread when user clicks on form close button.
0
votes
2answers
91 views

implementing IDisposable for large MVP project in C#

I have an MVP project that has memory leaks (it's not a web project). The memory goes up each time when loading data from the database into a grid on a form. I tried investigating each object that is ...
0
votes
0answers
26 views

Recreating a Disposed Control in a Form that is hidden - C#

I recently came across a situation where I use an opensource listview in C# on one of the many child forms. The application maintains a stack of all forms, so from the menu we can navigate back and ...
1
vote
0answers
69 views

Problems After Disposing DbContext

I recently made changes to my MVC3 Application in attempt to properly dispose of the DbContext objects [1]. This worked great in development, but once the application was pushed to my production ...
0
votes
0answers
72 views

If i stop CryptoStream Read i get Bad Data exception

I'm having problem with CryptoStream Decryptor. I'm decrypting file on another Thread. So here is the problem: When I let the file to decrypt to the end, everything is allright but when I stop ...
-2
votes
2answers
55 views

InvalidOperationalException base.Dispose(disposing)

I creating diagnostic application for PLCs. I have one form and a few Controls, which was inherited of UserControl. This Controls I switch. One view is Dashboard, Graph, and so on. When the graph is ...
0
votes
0answers
43 views

asp.net trigger event when script causes reloads page

Im working on a script which connects to a PLC and gets parameters from it. More info: I've created some code for choosing the machine to connect to, that causes the script to reload and get ...
0
votes
3answers
68 views

What C# class objects acquire unmanaged resources? Is there a list?

I was working on serializing and deserializing a class object using XML when I came across this blog post that shows how to do it on Windows Phone 7 using the isolated storage area. Windows Phone 7 ...
0
votes
2answers
75 views

c# windows form override dispose issue

im working on a projact where i convert j# UI code to C#. in the old code (j#) there was a class extends Form, and method: public void dispose() { super.dispose(); components.dispose(); } ...
0
votes
0answers
21 views

ASP.NET reload stress

I'm creating a project for reading variables from a plc and i've had a few questions about asp.net website behavior: The script: The script creates a connection with the local plc over ip+port and ...
0
votes
1answer
81 views

close 1 jframe with multiple jframes active not working

My program displays some windows (jframe and jpanel) on the screen and a main frame. When the user select the option to delete one of these windows in the main frame, it should close the selected ...
2
votes
2answers
62 views

wpf window event continue raise after window is closed

I have a problem with wpf events. In the xaml I have following combobox with selectionchanged event: <ComboBox Grid.Column="1" Grid.Row="1" Name ="comboBox" SelectedItem="{Binding ...
0
votes
2answers
35 views

What process is Streamreader using?

I made a simple program with StreamReader sr = new StreamReader(File.OpenRead(dlg.FileName)); txtBox1.Text = sr.ReadToEnd(); and forgot to put sr.Dispose(); and now when I try ...
1
vote
1answer
56 views

Life of an object inside an Action MVC

When is an object of a class inside an action of a controller disposed in ASP .NET MVC.?
0
votes
5answers
90 views

Cancel dispose inside Dispose method

Is there a way I can cancel a dispose from within the Dispose method, in other words NOT dispose A when A.Dispose() is called. Update I didn't explain well, 'cos I couldn't think of a way to put it ...
1
vote
0answers
37 views

Dispose and asynchrony [duplicate]

While studying the following snippet of code from the project I work on var storedObject = _objectStorage.OpenObject(objectId); PerformActions(storeObject); I discovered that storedObject object is ...
6
votes
2answers
121 views

Preventing to dispose objects multiple times

Consider the following code: using (Stream stream = new FileStream("file.txt", FileMode.OpenOrCreate)) { using (StreamWriter writer = new StreamWriter(stream)) { // Use the writer ...
0
votes
0answers
43 views

Proper Location to Call Dispose/Close for ManualResetEvent in C# Form Application

I am trying to do the right thing and call Dispose on my ManualResetEvent(s), but they need to be around (since multithreaded application with button clicks that rely on the events) until the form is ...
0
votes
1answer
47 views

C# - idea behind instantiating BitMap object twice to avoid locking problems

I had a problem with deleting image that was opened in a PictureBox. Thanks to Hans Passant I got a solution for this problem using this snippet proposed by him : using (var temp = new ...
1
vote
1answer
40 views

Using BitMap object without locking the resource

From an answer in a previous question, given by Hans Passant I understood that : MyImage = new Bitmap(openFileDialog1.FileName); pictureBox1.Image = (Image)MyImage; Yes, that code puts a lock ...
0
votes
0answers
46 views

How to delete the file that was sent as StreamContent of HttpResponseMessage

In ASP.NET webapi, I send a temporary file to client. I open a stream to read the file and use the StreamContent on the HttpResponseMessage. Once the client receives the file, I want to delete this ...
1
vote
4answers
155 views

.NET PictureBox - how to be sure that the resource is released

I have an OpenFileDialog and PictureBox in user control. To understand the problem better I'll explain in few words how this user control works. The user can select an image to be opened for the form. ...
0
votes
3answers
620 views

Windows Forms - picture box. Where is the prope place to dispose an image

I have a form with OpenFileDialog for selecting image and showing it in pictureBox. Until the form is open the user can open and then save the opened image as many times as he wants. What I want to do ...
-1
votes
2answers
59 views

Does .NET mutex engage unmanaged resources? [duplicate]

MSDN article Mutex Class tells (in comments to code example): Unlike Monitor, Mutex can be used with WaitHandle.WaitAll and WaitAny, and can be passed across AppDomain boundaries Does it ...

1 2 3 4 5 17