Click here to Skip to main content
15,909,939 members
Home / Discussions / C#
   

C#

 
Questionloading a file on the lisview conttrol by a double click (c#) Pin
Gianpaolo Barci14-Oct-08 6:49
Gianpaolo Barci14-Oct-08 6:49 
AnswerRe: loading a file on the lisview conttrol by a double click (c#) Pin
Dan Neely14-Oct-08 6:58
Dan Neely14-Oct-08 6:58 
AnswerRe: loading a file on the lisview conttrol by a double click (c#) Pin
KaptinKrunch14-Oct-08 7:04
KaptinKrunch14-Oct-08 7:04 
QuestionToolStripDropDownButton error...is it just me? Pin
pacoxl14-Oct-08 6:23
pacoxl14-Oct-08 6:23 
AnswerRe: ToolStripDropDownButton error...is it just me? Pin
Paul Conrad14-Oct-08 7:07
professionalPaul Conrad14-Oct-08 7:07 
GeneralRe: ToolStripDropDownButton error...is it just me? Pin
pacoxl14-Oct-08 8:02
pacoxl14-Oct-08 8:02 
QuestionRe: ToolStripDropDownButton error...is it just me? [modified] Pin
Alan Burkhart4-Sep-11 21:25
Alan Burkhart4-Sep-11 21:25 
QuestionTreeview Pin
boiDev14-Oct-08 5:48
boiDev14-Oct-08 5:48 
AnswerRe: Treeview Pin
Paul Conrad14-Oct-08 7:08
professionalPaul Conrad14-Oct-08 7:08 
GeneralRe: Treeview Pin
nelsonpaixao14-Oct-08 12:17
nelsonpaixao14-Oct-08 12:17 
Questionneed help - A C# utility for a simple web query like application Pin
carl_em_200714-Oct-08 5:41
carl_em_200714-Oct-08 5:41 
AnswerRe: need help - A C# utility for a simple web query like application Pin
Simon P Stevens14-Oct-08 5:48
Simon P Stevens14-Oct-08 5:48 
AnswerRe: need help - A C# utility for a simple web query like application Pin
Ed.Poore14-Oct-08 6:07
Ed.Poore14-Oct-08 6:07 
GeneralRe: need help - A C# utility for a simple web query like application Pin
carl_em_200714-Oct-08 6:24
carl_em_200714-Oct-08 6:24 
GeneralRe: need help - A C# utility for a simple web query like application Pin
Ed.Poore14-Oct-08 8:03
Ed.Poore14-Oct-08 8:03 
Questionone question related to the memory and sources release Pin
Seraph_summer14-Oct-08 5:33
Seraph_summer14-Oct-08 5:33 
AnswerRe: one question related to the memory and sources release Pin
Simon P Stevens14-Oct-08 5:36
Simon P Stevens14-Oct-08 5:36 
GeneralRe: one question related to the memory and sources release Pin
Seraph_summer14-Oct-08 5:45
Seraph_summer14-Oct-08 5:45 
GeneralRe: one question related to the memory and sources release Pin
Simon P Stevens14-Oct-08 5:59
Simon P Stevens14-Oct-08 5:59 
GeneralRe: one question related to the memory and sources release Pin
Seraph_summer14-Oct-08 5:59
Seraph_summer14-Oct-08 5:59 
GeneralRe: one question related to the memory and sources release Pin
Simon P Stevens14-Oct-08 6:04
Simon P Stevens14-Oct-08 6:04 
In .net you don't need to clear memory. Most .net objects are "managed" which means their memory is automatically reclaimed by the garbage collector, provided you don't hold references too them after they should have gone out of scope, so you don't need to worry about it.

When a class uses unmanaged memory, it will implement the IDisposable interface. In this case, you just call the Dispose() method when you are finished with it to release the objects unmanaged memory.

I've only briefly looked over your code, but I can't see any types in there that need disposing of.

Simon

QuestionWindows Forms Action Framework [modified] Pin
Donkey Master14-Oct-08 5:17
Donkey Master14-Oct-08 5:17 
AnswerRe: Windows Forms Action Framework Pin
Simon P Stevens14-Oct-08 5:34
Simon P Stevens14-Oct-08 5:34 
GeneralRe: Windows Forms Action Framework Pin
Donkey Master14-Oct-08 5:56
Donkey Master14-Oct-08 5:56 
GeneralRe: Windows Forms Action Framework Pin
Simon P Stevens14-Oct-08 6:07
Simon P Stevens14-Oct-08 6:07 

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.