Re: [Gambas-user] About Groups of Controls

2015-12-04 Thread Jorge Carri贸n
I Don't think so. Benoit has explained very well the situation. Accidentally (after a copy & paste code) I included the .Action property after de AS clause. The behaviour did not was I expected at all. But now is all clear. Thanks for the answer. Regards. 2015-12-04 17:06 GMT+01:00 Moviga Technol

Re: [Gambas-user] About Groups of Controls

2015-12-04 Thread Moviga Technologies
You are perhaps confusing .Action with .Group ? -- Go from Idea to Many App Stores Faster with Intel(R) XDK Give your users amazing mobile app experiences with Intel(R) XDK. Use one codebase in this all-in-one HTML5 dev

Re: [Gambas-user] About Groups of Controls

2015-12-04 Thread Jorge Carri贸n
Oh... ok, then. All that has been an accident... but a instructive accident, I guess... 馃榿 Regards 2015-12-04 14:14 GMT+01:00 Beno卯t Minisini : > Le 04/12/2015 13:49, Jorge Carri贸n a 茅crit : > > I didn't expect nothing. It was an accident: I copied and pasted the code > > with de .Action propert

Re: [Gambas-user] About Groups of Controls

2015-12-04 Thread Beno卯t Minisini
Le 04/12/2015 13:49, Jorge Carri贸n a 茅crit : > I didn't expect nothing. It was an accident: I copied and pasted the code > with de .Action property line inadvertently from other project and get > surprised by the behaviour. > > Either way I don't understand why this behaviour. I think that should c

Re: [Gambas-user] About Groups of Controls

2015-12-04 Thread Jorge Carri贸n
I didn't expect nothing. It was an accident: I copied and pasted the code with de .Action property line inadvertently from other project and get surprised by the behaviour. Either way I don't understand why this behaviour. I think that should call the _click event and the Action_Activate event, bu

Re: [Gambas-user] About Groups of Controls

2015-12-04 Thread Beno卯t Minisini
Le 04/12/2015 13:15, Jorge Carri贸n a 茅crit : > I don't know if its a bug or a expected behaviour, so I ask here first: > > If you declare a group of toolbuttons this way: > > for n=1 to 5 > bCan = New ToggleButton(hbx) As "CancelItemCola" > bCan.Picture = Stock["cancel"] >

[Gambas-user] About Groups of Controls

2015-12-04 Thread Jorge Carri贸n
I don't know if its a bug or a expected behaviour, so I ask here first: If you declare a group of toolbuttons this way: for n=1 to 5 bCan = New ToggleButton(hbx) As "CancelItemCola" bCan.Picture = Stock["cancel"] bCan.Height = 22 bCan.Width = 22 bCan.Border