Re: [Gambas-user] Selection from GridView

2009-09-10 Thread Ricardo Díaz Martín
To do the first write (select first, third and sixth rows - gvYourGridView is the name of the gridview in your form) gvYourGridView.Rows.[0].Selected = True gvYourGridView.Rows.[2].Selected = True gvYourGridView.Rows.[5].Selected = True To do the second only write gvYourGridView.Rows.Unselect

Re: [Gambas-user] Release of Gambas 2.16

2009-09-10 Thread Rolf-Werner Eilert
Benoît Minisini schrieb: Hi, This new release includes the main following changes: - Gambas now compiles with libtool 2.x on recent Ubuntu versions. - CTRL+PageUp and CTRL+PageDown now switch between tabs in the IDE. - Shortcuts are correctly saved in all cases in the IDE menu editor.

[Gambas-user] Word Wrap in GridView

2009-09-10 Thread Rolf-Werner Eilert
When there is a longer string than fits into a cell, GridView will wrap the text. But it won't by itself make the line taller to show the whole text properly. Instead, you will see just a little bit of the letters in the second line and the first line appears pushed upwards a bit. How can I

Re: [Gambas-user] Word Wrap in GridView

2009-09-10 Thread Angel Romero Astorga
Hi all My problem is similar. When I used gb.gui, GridView wrap the text, but when I use gb.qt, it don't do it. ¿How can I wrap the text in a cell? thanks Rolf, I don't know how to help you, sorry 2009/9/10 Rolf-Werner Eilert eilert-sprac...@t-online.de When there is a longer string than fits

[Gambas-user] a IDE-Bug in 2.16.0 rev 2323

2009-09-10 Thread Charlie Reinl
Salut Benoit, [OperatingSystem] OperatingSystem=Linux KernelRelease=2.6.24-24-generic DistributionVendor=ubuntu DistributionRelease=Ubuntu 8.04.3 LTS [System] CPUArchitecture=i686 TotalRam=506932 kB [Gambas] Gambas1=gbx-1.0.17 Gambas1Path=/usr/bin/gbx Gambas2=2.16.0

[Gambas-user] Database manager Save Table problem

2009-09-10 Thread Richard Frost
I m a new Gambas2 user, and I am not sure where little things like this should be posted, so if it should be somewhere else, please let me know. My system is Ubuntu Jaunty 9.04, Gambas2-2.15.2, Postgresql In the Database Manager, when I save changes to a table which has an index defined, I

Re: [Gambas-user] Database manager Save Table problem

2009-09-10 Thread Charlie Reinl
Am Donnerstag, den 10.09.2009, 12:08 -0400 schrieb Richard Frost: I m a new Gambas2 user, and I am not sure where little things like this should be posted, so if it should be somewhere else, please let me know. My system is Ubuntu Jaunty 9.04, Gambas2-2.15.2, Postgresql In the Database

Re: [Gambas-user] Database manager Save Table problem

2009-09-10 Thread Benoît Minisini
I m a new Gambas2 user, and I am not sure where little things like this should be posted, so if it should be somewhere else, please let me know. My system is Ubuntu Jaunty 9.04, Gambas2-2.15.2, Postgresql In the Database Manager, when I save changes to a table which has an index defined,

[Gambas-user] question about Dialog.SelectDirectory()

2009-09-10 Thread Charlie Reinl
Salut Benoit, my be a very stupid question, but for what I'm looking for, is like the Dialog.SelectDirectory() but when I change into a folder/directory I would like to see also the files in that folder/directory. And as result the path to the folder/directory is returned. Reason: Choosing

Re: [Gambas-user] Database manager Save Table problem

2009-09-10 Thread Richard Frost
Benoît Minisini wrote: I m a new Gambas2 user, and I am not sure where little things like this should be posted, so if it should be somewhere else, please let me know. My system is Ubuntu Jaunty 9.04, Gambas2-2.15.2, Postgresql In the Database Manager, when I save changes to a table which

Re: [Gambas-user] Database manager Save Table problem

2009-09-10 Thread Jean-Yves F. Barbier
Benoît Minisini a écrit : ... Apparently on other database systems, two index can have the same name provided they are on different tables. ? strange (and I'm not sure this fit in SQLs standards) However, in PG, you can't have a doublon, either it is from tables, indexes, sequences (exception

Re: [Gambas-user] Database manager Save Table problem

2009-09-10 Thread Benoît Minisini
Benoît Minisini a écrit : ... Apparently on other database systems, two index can have the same name provided they are on different tables. ? strange (and I'm not sure this fit in SQLs standards) However, in PG, you can't have a doublon, either it is from tables, indexes, sequences

Re: [Gambas-user] question about Dialog.SelectDirectory()

2009-09-10 Thread Dimitris Anogiatis
It's not a stupid question Charlie, you can use the DirChooser control that's available in gb.form You can have a form with that control come up as modal (so you can't do anything else until you have chosen a directory and inside it you can put a dirchooser control you can get the selected path