Click here to Skip to main content
16,017,706 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: ToolTip with RTL property Pin
lmaks3-May-05 3:51
lmaks3-May-05 3:51 
GeneralRe: ToolTip with RTL property Pin
Rizwan Bashir3-May-05 21:20
Rizwan Bashir3-May-05 21:20 
GeneralDispose Class Pin
nitin_ion2-May-05 21:05
nitin_ion2-May-05 21:05 
GeneralRe: Dispose Class Pin
Colin Angus Mackay3-May-05 1:07
Colin Angus Mackay3-May-05 1:07 
GeneralRe: Dispose Class Pin
nitin_ion3-May-05 1:25
nitin_ion3-May-05 1:25 
GeneralRe: Dispose Class Pin
Colin Angus Mackay3-May-05 1:36
Colin Angus Mackay3-May-05 1:36 
GeneralRe: Dispose Class Pin
nitin_ion3-May-05 1:48
nitin_ion3-May-05 1:48 
GeneralRe: Dispose Class Pin
Colin Angus Mackay3-May-05 3:24
Colin Angus Mackay3-May-05 3:24 
When you set all references to the object to Nothing it is effectively destroyed. While it does still reside in memory for a while, until the garbage collector gets it, it is no longer accessible because nothing refernces it.

If you have a reference to an object then the garbage collector cannot collect it because something is referencing it. If something is referencing it then it is not safe to remove it.

What you might consider looking into is the WeakReference[^] class. This allows you to hold a reference to an object that the garbage collector effectively ignores. So, if you remove all strong references (i.e. a normal reference) then the garbage collector will remove it when it gets round to it. The weak reference will then return Nothing.

Does this help?


My: Blog | Photos | Next SQL Presentation
WDevs.com - Open Source Code Hosting, Blogs, FTP, Mail and More


GeneralRe: Dispose Class Pin
nitin_ion3-May-05 19:21
nitin_ion3-May-05 19:21 
GeneralRe: Dispose Class Pin
Colin Angus Mackay3-May-05 20:46
Colin Angus Mackay3-May-05 20:46 
GeneralRe: Dispose Class Pin
nitin_ion3-May-05 20:51
nitin_ion3-May-05 20:51 
GeneralRe: Dispose Class Pin
Colin Angus Mackay3-May-05 22:28
Colin Angus Mackay3-May-05 22:28 
GeneralRe: Dispose Class Pin
nitin_ion3-May-05 22:59
nitin_ion3-May-05 22:59 
QuestionHow to capture width in paint event of picturebox Pin
meghadwivedi2-May-05 19:52
meghadwivedi2-May-05 19:52 
AnswerRe: How to capture width in paint event of picturebox Pin
Fernando Soto3-May-05 14:30
Fernando Soto3-May-05 14:30 
Generalproblem with ntvdm.exe Pin
Jason Brumwell2-May-05 17:02
sussJason Brumwell2-May-05 17:02 
GeneralRe: problem with ntvdm.exe Pin
Dave Kreskowiak3-May-05 2:22
mveDave Kreskowiak3-May-05 2:22 
GeneralRe: problem with ntvdm.exe Pin
Jason Brumwell3-May-05 15:46
sussJason Brumwell3-May-05 15:46 
GeneralWeird Textbox Behavior Pin
Computer_Guy2-May-05 16:29
Computer_Guy2-May-05 16:29 
GeneralRe: Weird Textbox Behavior Pin
Het21092-May-05 18:59
Het21092-May-05 18:59 
GeneralRe: Weird Textbox Behavior Pin
Computer_Guy3-May-05 2:36
Computer_Guy3-May-05 2:36 
GeneralRe: Weird Textbox Behavior Pin
lmaks3-May-05 19:19
lmaks3-May-05 19:19 
GeneralRe: Weird Textbox Behavior Pin
Computer_Guy4-May-05 2:26
Computer_Guy4-May-05 2:26 
QuestionHow to get Pin
Yulianto.2-May-05 16:09
Yulianto.2-May-05 16:09 
AnswerRe: How to get Pin
Christian Graus2-May-05 16:20
protectorChristian Graus2-May-05 16:20 

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.