4
votes
4answers
399 views
Delphi: Is it ok for an object to free it self?
I have a form that I use to show some information for some seconds. Is it ok for the form to free itself? Can I start a timer in the constructor, and then call self.free in the timer-event? Or will …
3
votes
7answers
550 views
Self deletable application in C# in one executable
Is it possible to make an application in C# that will be able to delete itself in some condition.
I need to write an updater for my application but I don't want the executable to be left after the …
1
vote
3answers
389 views
How can a object self destruct on an event, in javascript?
I have this function, to create a DIV on-the-fly. But now, I want to destroy this object on onclick event, but I just don't know how.
function creatediv(id) {
var newdiv = …
