Re: [Gambas-user] how to apply a revision

2010-11-05 Thread Jussi Lahtinen
Hmmm... why do you need it? Bug? Jussi On Fri, Nov 5, 2010 at 16:38, Daniel Vanhee wrote: > I am using Gambas2.2.21.0 and had to download a revision (CDialog.cpp). > Can anyone explain me how I have to apply that revision > > Regards. > > ---

Re: [Gambas-user] how to apply a revision

2010-11-05 Thread Jussi Lahtinen
I'm not sure I understand right... but. You probably want to download whole source of development version. Read from here what you need and how to compile: http://gambas.sourceforge.net/en/download.html http://gambasdoc.org/help/install?view&en Jussi On Fri, Nov 5, 2010 at 16:38, Daniel Vanhee w

Re: [Gambas-user] Variable overflow questions

2010-11-05 Thread user
Thank you VERY much, very nice explanation! On Fri, 2010-11-05 at 15:00 -0400, nando wrote: > Here is a visualization (view this email with a fixed width font): > Regarding your line: DIM iArea AS Single = 1.7014118E+38 > A Single only has about 8 digits of precision so, the number is really this

Re: [Gambas-user] Gridview Select Multiple rows.

2010-11-05 Thread Fabien Bodard
Le 5 novembre 2010 15:46, Benoît Minisini a écrit : >> >> http://gambasdoc.org/help/comp/gb.qt4/.gridviewrows?v3 >> >> It is not in the doc, Benoit :), otherwise I would not say all this >> nonsense >> > > It is if you click on the "act as a read-only array" link. > > Regards, > > -- > Benoît Mini

Re: [Gambas-user] Variable overflow questions

2010-11-05 Thread nando
Here is a visualization (view this email with a fixed width font): Regarding your line: DIM iArea AS Single = 1.7014118E+38 A Single only has about 8 digits of precision so, the number is really this: 170,141,180,000,000,000,000,000,000,000,000,000,000.0

Re: [Gambas-user] Pango-WARNING

2010-11-05 Thread Matti
Just google. There are 1630 results for pango-warning invalid utf-8 string passed to pango_layout_set_text. Am 05.11.2010 16:53, schrieb user: > Hi, > > i have an application (VirusCollectionTools) and the output in console > gave this. > > (VirusCollectionTools-source:6343): Pango-WARNING **:

[Gambas-user] Pango-WARNING

2010-11-05 Thread user
Hi, i have an application (VirusCollectionTools) and the output in console gave this. (VirusCollectionTools-source:6343): Pango-WARNING **: Invalid UTF-8 string passed to pango_layout_set_text() what is this? -- The N

Re: [Gambas-user] Gridview Select Multiple rows.

2010-11-05 Thread Benoît Minisini
> > http://gambasdoc.org/help/comp/gb.qt4/.gridviewrows?v3 > > It is not in the doc, Benoit :), otherwise I would not say all this > nonsense > It is if you click on the "act as a read-only array" link. Regards, -- Benoît Minisini

[Gambas-user] how to apply a revision

2010-11-05 Thread Daniel Vanhee
I am using Gambas2.2.21.0 and had to download a revision (CDialog.cpp). Can anyone explain me how I have to apply that revision Regards. -- The Next 800 Companies to Lead America's Growth: New Video Whitepaper David G. Tho

Re: [Gambas-user] Gridview Select Multiple rows.

2010-11-05 Thread Michael
Thanks Fabien, I found it eventually but don't you feel silly when it's staring you in the face Michael On 06/11/10 00:27, Fabien Bodard wrote: > Le 5 novembre 2010 13:26, Benoît Minisini > a écrit : >>> Sorry, this does not work. It only applies to the ListView. I do use a >>> ListView elsewhe

Re: [Gambas-user] Gridview Select Multiple rows.

2010-11-05 Thread Fabien Bodard
Le 5 novembre 2010 13:26, Benoît Minisini a écrit : >> Sorry, this does not work. It only applies to the ListView. I do use a >> ListView elsewhere and the easiest way is simply to loop through all >> items with the .movenext function and check for "If lvw.current.selected >> or lvw.item.selected"

Re: [Gambas-user] Gridview Select Multiple rows.

2010-11-05 Thread Benoît Minisini
> Sorry, this does not work. It only applies to the ListView. I do use a > ListView elsewhere and the easiest way is simply to loop through all > items with the .movenext function and check for "If lvw.current.selected > or lvw.item.selected". Then add the Key to the array of items to process. > >

Re: [Gambas-user] Gridview Select Multiple rows.

2010-11-05 Thread Michael
Sorry, this does not work. It only applies to the ListView. I do use a ListView elsewhere and the easiest way is simply to loop through all items with the .movenext function and check for "If lvw.current.selected or lvw.item.selected". Then add the Key to the array of items to process. Unfortun

Re: [Gambas-user] Gridview Select Multiple rows.

2010-11-05 Thread Michael
Thanks, I will give this a try. Michael On 05/11/10 18:09, user wrote: > Example with ListView control lswResults > > --- > ' Gambas class file > PRIVATE sFileArray AS String[] = [""] > PRIVATE iKeyArray AS Integer[] = [0] > PRIVATE bKeyControlPressed AS

Re: [Gambas-user] Gridview Select Multiple rows.

2010-11-05 Thread Fabien Bodard
true ... it seem it miss a function that can return an array of selected cells so we can parse the cells . Ex: Dim iLastRow as integer =-1 For each Cells in GridView.SelectedItems if iLastRow<>Cells.Row then aiRows.Add(Cells.Row) endif next But it miss some things to do that a cell i

Re: [Gambas-user] Translat Wiki

2010-11-05 Thread Fabien Bodard
2010/11/4 Mauricio Baeza : > El jue, 04-11-2010 a las 23:45 +0100, Benoît Minisini escribió: > >> If you can translate the undocumented page in english first, do it. >> >> Otherwise, if it is too complex for you, do the translation in spanish >> only. >> But when I will do the english translation,

Re: [Gambas-user] Questions about project options

2010-11-05 Thread Fabien Bodard
2010/11/4 user : > Good morning to all and have a nice day, > > I have a question about option properties of a project. > > There is an option "Modules symbols are public by default No/Yes" > > 1) What are the modules symbols? The module variables ? yes :) > > And another one. > > 2) How can we use

Re: [Gambas-user] Gridview Select Multiple rows.

2010-11-05 Thread user
Example with ListView control lswResults --- ' Gambas class file PRIVATE sFileArray AS String[] = [""] PRIVATE iKeyArray AS Integer[] = [0] PRIVATE bKeyControlPressed AS Boolean = FALSE PRIVATE bSellectAllPressed AS Boolean = FALSE PUBLIC SUB Form_Ope