Re: [Gambas-user] PictureDatabase with PostgreSQL

2009-07-15 Thread Rolf Schmidt
Hi Pino, I am trying to use the example PictureDatabase with PostgreSQL but I get the following error: Invalid byte sequence for encoding UTF-8 In Debian, the PostgreSQL database will created on install-time with the charset of the root, usually of the national language. I have had this

Re: [Gambas-user] how can I run my Shell script in a directory?

2009-07-15 Thread Stefano Palmeri
Il martedì 14 luglio 2009 18:48:32 Szenográdi Norbert ha scritto: Hi, Can anyone help to me with subject? regards, Sevoir Where is your script? Is it in your project folder? Let's say it's in your project folder and is called thescript.sh DIM sShellScript AS String 'Define the

Re: [Gambas-user] Bugs in TextLabel

2009-07-15 Thread Benoît Minisini
gambas 2.14 qt 1. create a project 2. drag picturebox into the form and select a png picture (make sure at least 400x400) 3. drag a textlabel on top of the picture 4. test that you can select the picture box control or textlabel by click on them 5. change the transparent on textlabel to

[Gambas-user] How to specify action button at runtime

2009-07-15 Thread kobolds
Hi, I try create button at run time but I having trouble to set the click action. here my code DIM m_MaxCol AS Integer = 5 DIM m_button AS Button DIM m_MaxBut AS Integer = 18 DIM m_Colcnt AS Integer = 0 DIM m_Rowcnt AS Integer = 0 DIM m_butcnt AS Integer = 0 DIM m_Colgap AS Integer = 2 DIM

Re: [Gambas-user] how can I run my Shell script in a directory?

2009-07-15 Thread Szenográdi Norbert
Hi, thanks. regards, Sevoir 2009. 07. 15, szerda keltezéssel 10.42-kor Stefano Palmeri ezt írta: Il mercoledì 15 luglio 2009 10:36:05 Stefano Palmeri ha scritto: Il martedì 14 luglio 2009 18:48:32 Szenográdi Norbert ha scritto: Hi, Can anyone help to me with subject?

Re: [Gambas-user] How to specify action button at runtime

2009-07-15 Thread Ron
kobolds wrote: Hi, I try create button at run time but I having trouble to set the click action. here my code DIM m_MaxCol AS Integer = 5 DIM m_button AS Button DIM m_MaxBut AS Integer = 18 DIM m_Colcnt AS Integer = 0 DIM m_Rowcnt AS Integer = 0 DIM m_butcnt AS Integer = 0 DIM

Re: [Gambas-user] Bugs in TextLabel

2009-07-15 Thread kobolds
Benoît Minisini wrote: gambas 2.14 qt 1. create a project 2. drag picturebox into the form and select a png picture (make sure at least 400x400) 3. drag a textlabel on top of the picture 4. test that you can select the picture box control or textlabel by click on them 5. change the

Re: [Gambas-user] How to specify action button at runtime

2009-07-15 Thread kobolds
Ron Klinkien wrote: kobolds wrote: Hi, I try create button at run time but I having trouble to set the click action. here my code DIM m_MaxCol AS Integer = 5 DIM m_button AS Button DIM m_MaxBut AS Integer = 18 DIM m_Colcnt AS Integer = 0 DIM m_Rowcnt AS Integer = 0 DIM m_butcnt

Re: [Gambas-user] Bugs in TextLabel

2009-07-15 Thread Ron
kobolds wrote: Benoît Minisini wrote: gambas 2.14 qt 1. create a project 2. drag picturebox into the form and select a png picture (make sure at least 400x400) 3. drag a textlabel on top of the picture 4. test that you can select the picture box control or textlabel by click on them

Re: [Gambas-user] How to specify action button at runtime

2009-07-15 Thread kobolds
Ron Klinkien wrote: kobolds wrote: Hi, I try create button at run time but I having trouble to set the click action. here my code DIM m_MaxCol AS Integer = 5 DIM m_button AS Button DIM m_MaxBut AS Integer = 18 DIM m_Colcnt AS Integer = 0 DIM m_Rowcnt AS Integer = 0 DIM m_butcnt

Re: [Gambas-user] PictureDatabase with PostgreSQL

2009-07-15 Thread Pino Zollo
Il martedì 14 luglio 2009 17:56:49 richard terry ha scritto: Hope this helps. Regards Richard Thanks Richard, yes it helpsnow I am going to put it into the PictureDatabase program. So actually the stream of byte is converted to octal to avoid coding problem. Is there also some reversing

Re: [Gambas-user] How to specify action button at runtime

2009-07-15 Thread Ron
my problem now is how to set the click action and how to know which button is clicking Use this instead: m_button = NEW Button(ScrollView1) AS MyButton Set the .Tag property to something unique: .Tag = iUnique And then catch the clicks with: PUBLIC SUB MyButton_Click()

Re: [Gambas-user] Forgot the attachment... re.: Listbox Border Misbehaving...

2009-07-15 Thread Benoît Minisini
Forgot the darn attachment... I HATE when I do that. Hi Stephen, The bug was fixed in revision #2125. Every control having scroll bars had the same problem. -- Benoît -- Enter the BlackBerry Developer Challenge

Re: [Gambas-user] How to specify action button at runtime

2009-07-15 Thread kobolds
Ron Klinkien wrote: my problem now is how to set the click action and how to know which button is clicking Use this instead: m_button = NEW Button(ScrollView1) AS MyButton Set the .Tag property to something unique: .Tag = iUnique And then catch the clicks with:

[Gambas-user] PB in GTK

2009-07-15 Thread Jean-Yves F. Barbier
Hi, I've got a PB on display with GTK: on a DataBrowse some fields have a 0 width and thus are hidden, under Qt display is Ok, under Gtk I found all hidden fields' names in the header. The police isn't respected either. JY PS: Sorry for the attachment, but talking graphics... -- inline:

Re: [Gambas-user] PictureDatabase with PostgreSQL

2009-07-15 Thread Pino Zollo
Il mercoledì 15 luglio 2009 18:09:51 richard terry ha scritto: By the time I was reading the PosgreSQL  documentation. There it explains a totally different way of handling blobs. They use the internal function pg_lo_import to import into the DB a large object. This returns a pointer

[Gambas-user] ButtonView

2009-07-15 Thread kobolds
I decide to share this with everyone . this will be useful for people develop program for touchscreen . let me know you opinion http://www.nabble.com/file/p24508131/snapshot2.png http://www.nabble.com/file/p24508131/test.zip test.zip -- View this message in context:

Re: [Gambas-user] PB in GTK

2009-07-15 Thread Benoît Minisini
Hi, I've got a PB on display with GTK: on a DataBrowse some fields have a 0 width and thus are hidden, under Qt display is Ok, under Gtk I found all hidden fields' names in the header. The police isn't respected either. JY PS: Sorry for the attachment, but talking graphics... Are you

Re: [Gambas-user] PB in GTK

2009-07-15 Thread Benoît Minisini
Benoît Minisini a écrit : Hi, I've got a PB on display with GTK: on a DataBrowse some fields have a 0 width and thus are hidden, under Qt display is Ok, under Gtk I found all hidden fields' names in the header. The police isn't respected either. JY PS: Sorry for the

Re: [Gambas-user] PB in GTK

2009-07-15 Thread Jean-Yves F. Barbier
Benoît Minisini a écrit : Benoît Minisini a écrit : Hi, I've got a PB on display with GTK: on a DataBrowse some fields have a 0 width and thus are hidden, under Qt display is Ok, under Gtk I found all hidden fields' names in the header. The police isn't respected either. JY PS: Sorry