Hi list,

I have updated gambas3 from svn this weekend and I got now some issues:

1- What's happened with gb.info component? It can be selected in project
dependencies but it's missing.

2- I usually save a reference to open forms in a collection in the main
class of my applications to improve application management. When finish the
application I clean the forms collection using something like:

Dim f as Form


For Each f in ApplicationFormCollection

   f = Null

Next


ApplicationFormCollection.Clear()

ApplicationFormCollection = Null

>From gambas3 revision 3776 open forms are not destroyed and keep alive whit
this code. I need to modify to this:

Dim f as Form


For Each f in ApplicationFormCollection

   *f.Close()*
   f = Null

Next


ApplicationFormCollection.Clear()

ApplicationFormCollection = Null

Why forms are not finished when you set these to null?

Regards,
Ricardo Díaz
------------------------------------------------------------------------------
Benefiting from Server Virtualization: Beyond Initial Workload 
Consolidation -- Increasing the use of server virtualization is a top
priority.Virtualization can reduce costs, simplify management, and improve 
application availability and disaster protection. Learn more about boosting 
the value of server virtualization. http://p.sf.net/sfu/vmware-sfdev2dev
_______________________________________________
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user

Reply via email to