> Suppose a dialog object d has been created, then before using > d.show_modal/modeless to display it. It has been found out that > there is no use to deplay d, then how to delete it?
Unicon automatically reclaims objects that are no longer used, so you normally don't need an explicit delete in this case. However, if your dialog were stored in a variable (say "d") you might eliminate the reference to the dialog with d := &null ------------------------------------------------------- This SF.NET email is sponsored by: SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See! http://www.vasoftware.com _______________________________________________ Unicon-group mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/unicon-group
