Re: [Gambas-user] Is it a bug or a "feature"?

2009-09-14 Thread Aleksandrs Livshics
On Monday 14 September 2009 21:59:06 Benoît Minisini wrote: > Sorry, my joke didn't work! :-/ > > I meant that AFAIK, Draw.Ellipse() didn't change at all since the > beginning. It always took the coordinates of the rectangle surrounding it. Benoit, I cannot believe in that because I have upgraded m

Re: [Gambas-user] Is it a bug or a "feature"?

2009-09-13 Thread Aleksandrs Livshics
On Sunday 13 September 2009 19:16:34 Benoît Minisini wrote: > > Hi Gambas users. > > I have found that in version 2.16 Draw.Ellipse does not > > work as it was in 2.7 (my previous version). > > In 2.16 the parameters which should specify coordinates of the > > Ellipse centre are actually correspond

[Gambas-user] Is it a bug or a "feature"?

2009-09-13 Thread Aleksandrs Livshics
Hi Gambas users. I have found that in version 2.16 Draw.Ellipse does not work as it was in 2.7 (my previous version). In 2.16 the parameters which should specify coordinates of the Ellipse centre are actually corresponding to the upper left corner of the rectangular area where ellipse is placed

Re: [Gambas-user] Selection from GridView

2009-09-11 Thread Aleksandrs Livshics
s > run fine and it's easy and fast to deploy my apps using freenx) > > Regards, > > 2009/9/10 Aleksandrs Livshics > > > Thank you. I was not clear enough, sorry. The problem is not > > with programming, but with the selection by mouse and keyboard. > > The Ctrl and S

Re: [Gambas-user] Selection from GridView

2009-09-10 Thread Aleksandrs Livshics
ridView.Rows.[2].Selected = True > gvYourGridView.Rows.[5].Selected = True > > To do the second only write > > gvYourGridView.Rows.Unselect > > > Regards, > Ricardo Díaz > > 2009/9/9 Aleksandrs Livshics > > > Hi Gambas users. > > I cannot fond how to

[Gambas-user] Selection from GridView

2009-09-09 Thread Aleksandrs Livshics
Hi Gambas users. I cannot fond how to select several rows from a GridView. The difficulty happens only if the rows to select are not consequent. If there is a simple interval of rows, then selection works well, but if I want to select, say, row1 and row5 ? Also how can a row selection be canceled

Re: [Gambas-user] Value box for numeric values

2009-09-05 Thread Aleksandrs Livshics
On Saturday 05 September 2009 12:57:08 Aleksandrs Livshics wrote: > On Saturday 05 September 2009 11:41:42 Doriano Blengino wrote: > > Benoît Minisini ha scritto: > > >> Hi gambas users. > > >> It seems to me that it is impossible to enter a number in > > &g

Re: [Gambas-user] Value box for numeric values

2009-09-05 Thread Aleksandrs Livshics
On Saturday 05 September 2009 11:41:42 Doriano Blengino wrote: > Benoît Minisini ha scritto: > >> Hi gambas users. > >> It seems to me that it is impossible to enter a number in > >> scientific notation in a value box. It does not accept > >> "E" or "D" letters which are used to separate exponent.

Re: [Gambas-user] Selection from a list

2009-09-03 Thread Aleksandrs Livshics
> > END > > > You could use it like this: > > Print multipleSelections(listbox1) > > and as a result you would get this > > Item 1|Item 4 > > (that's the text of the selected items) > > if you want their indices you could modify it so you could >

[Gambas-user] Selection from a list

2009-09-03 Thread Aleksandrs Livshics
Hallo to everyone. Can anyone tell me whether a ListBox can be used to display a list with several items preselected and then to allow a user to change some part of this selection? I think mode "multiple" must allow to do this. However I do not understand how to preselect more than one item and ho

[Gambas-user] Value box for numeric values

2009-09-02 Thread Aleksandrs Livshics
Hi gambas users. It seems to me that it is impossible to enter a number in scientific notation in a value box. It does not accept "E" or "D" letters which are used to separate exponent. So value as 1.0E-1 is illegal. If it is so, it must be treated as a bug ! Or am I doing something wrongly ? Alex

[Gambas-user] menu action

2009-08-31 Thread Aleksandrs Livshics
Hi Gambas users. Is it possible to assign some action to a menu directly (this menu has just one item and it is silly to click first on a menu and then on the only item) Alternatively, Is it possible to place a simple button on a menu line of the form? Also is there any way (I cannot find it, sor

Re: [Gambas-user] How to set a slider value?

2009-08-25 Thread Aleksandrs Livshics
n ! > > > > if you want to stop the sub too you need to add a 'return' keyword ! > > > > > > > > if ok then > >  stop event > >  return > > endif > > > > nevertheless send me a short sample exemple and i will see what i can d

Re: [Gambas-user] How to set a slider value?

2009-08-25 Thread Aleksandrs Livshics
return' keyword ! > > > > if ok then > stop event > return > endif > > nevertheless send me a short sample exemple and i will see what i can do > > 2009/8/25 Aleksandrs Livshics : > > On Monday 24 August 2009 17:33:39 Fabien Bodard wrote: > >

Re: [Gambas-user] How to set a slider value?

2009-08-25 Thread Aleksandrs Livshics
On Monday 24 August 2009 17:33:39 Fabien Bodard wrote: > 2009/8/24 Aleksandrs Livshics : > > Dear Gambas users, > > I am new to Gambas and my question may be silly, > > however I cannot find how to set a slider value in the > > code. (Not the initial value, this is easy)

[Gambas-user] How to set a slider value?

2009-08-24 Thread Aleksandrs Livshics
Dear Gambas users, I am new to Gambas and my question may be silly, however I cannot find how to set a slider value in the code. (Not the initial value, this is easy) I want to specify some event (like double click on a slider) to force it to jump to a predefined position/value. If I write Dbl_cl