Re: [Gambas-user] destroying all panels

2008-09-28 Thread Benoit Minisini
On dimanche 28 septembre 2008, Joshua Higgins wrote: > If I use > > windowpanel = New Panel(FMain) As "TaskPanel" > > many times to create loads of panels, how do I destroy all of them? Using > windowpanel.delete only destroys the last one created. You must store the reference on each newly create

Re: [Gambas-user] question about creating and deleting objects

2008-09-28 Thread Benoit Minisini
On dimanche 28 septembre 2008, Joshua Higgins wrote: > Hello. > > I am making a task bar in gambas3. For each task I have a container panel > which has a label and a button in. How can I create one of these for each > task and set the options of the label and button? > > > Currently I am up to here

Re: [Gambas-user] setting window type

2008-09-28 Thread Benoit Minisini
On dimanche 28 septembre 2008, Joshua Higgins wrote: > Benoit, please can you point me in the right direction for making a task > bar (showing all the open programs)? > This is actually not yet implemented! What I explained you are functions that allows you to know the list of top-level windows

Re: [Gambas-user] What is the 'Action' e.g when constructing a menu

2008-09-28 Thread Doriano Blengino
richard terry ha scritto: > I've often wondered what/how this is used. > > For example in the menu editor one gives the names, group, tag, and then > there > is an action textbox ? what for > > Any info/example appreciated, and thanks in advance. > > Richard > You can use an "Action" to group

Re: [Gambas-user] setting window type

2008-09-28 Thread Joshua Higgins
Benoit, please can you point me in the right direction for making a task bar (showing all the open programs)? On Sat, Sep 27, 2008 at 1:48 PM, Benoit Minisini < [EMAIL PROTECTED]> wrote: > On samedi 27 septembre 2008, Joshua Higgins wrote: > > I am planning to make a desktop environment using gam

[Gambas-user] destroying all panels

2008-09-28 Thread Joshua Higgins
If I use windowpanel = New Panel(FMain) As "TaskPanel" many times to create loads of panels, how do I destroy all of them? Using windowpanel.delete only destroys the last one created. -- joshua higgins >>-- - This S

[Gambas-user] question about creating and deleting objects

2008-09-28 Thread Joshua Higgins
Hello. I am making a task bar in gambas3. For each task I have a container panel which has a label and a button in. How can I create one of these for each task and set the options of the label and button? Currently I am up to here: Dim swindows As Array Dim swindow As Integer swindows = Deskto

[Gambas-user] What is the 'Action' e.g when constructing a menu

2008-09-28 Thread richard terry
I've often wondered what/how this is used. For example in the menu editor one gives the names, group, tag, and then there is an action textbox ? what for Any info/example appreciated, and thanks in advance. Richard - This