Re: [Gambas-user] Best control for a game

2008-09-04 Thread Doriano Blengino
Werner ha scritto: > Tomas Eroles i Forner wrote: > >> commands in a Draw.Begin(DrawingArea)...Draw.End group of code. >> >> It seems to work, but, I see that you can start drawing if you put a >> command button, or a menu or something like this, but it does not work >> in a Form_Open event. >>

Re: [Gambas-user] Best control for a game

2008-09-04 Thread Werner
Tomas Eroles i Forner wrote: > Hi again > Well, I've made some research in DrawingArea. > I've been reading the documentation on the wiki, and, if I understand > it, for drawing I have to draw into a DrawingArea enclosing all draw > commands in a Draw.Begin(DrawingArea)...Draw.End group of code. >

Re: [Gambas-user] Listbox.List(x) error

2008-09-04 Thread Benoit Minisini
On jeudi 04 septembre 2008, Sevoir wrote: > Thx this working. > > > Regards, Norbert > > 2008. 09. 4, csütörtök keltezéssel 21.44-kor Jacky ezt írta: > > Le Thursday 04 September 2008 20:35:47 Sevoir, vous avez écrit : > > > Hi All! > > > > > > I have a problem. > > > I want get a Listbox item text

Re: [Gambas-user] Best control for a game

2008-09-04 Thread Tomas Eroles i Forner
Hi again Well, I've made some research in DrawingArea. I've been reading the documentation on the wiki, and, if I understand it, for drawing I have to draw into a DrawingArea enclosing all draw commands in a Draw.Begin(DrawingArea)...Draw.End group of code. It seems to work, but, I see that you ca

Re: [Gambas-user] Listbox.List(x) error

2008-09-04 Thread Sevoir
Thx this working. Regards, Norbert 2008. 09. 4, csütörtök keltezéssel 21.44-kor Jacky ezt írta: > Le Thursday 04 September 2008 20:35:47 Sevoir, vous avez écrit : > > Hi All! > > > > I have a problem. > > I want get a Listbox item text value to a label.caption .. > > label.caption = ListBox.list

Re: [Gambas-user] Listbox.List(x) error

2008-09-04 Thread Kari Laine
On Thu, Sep 4, 2008 at 10:35 PM, Sevoir <[EMAIL PROTECTED]> wrote: > Hi, > > Thanks your answer, but problem still > > Regards, Sevoir > > 2008. 09. 4, csütörtök keltezéssel 21.26-kor Jacky ezt írta: > > Le Thursday 04 September 2008 20:35:47 Sevoir, vous avez écrit : > > > Hi All! > > > > > > I h

Re: [Gambas-user] Listbox.List(x) error

2008-09-04 Thread Jacky
Le Thursday 04 September 2008 20:35:47 Sevoir, vous avez écrit : > Hi All! > > I have a problem. > I want get a Listbox item text value to a label.caption .. > label.caption = ListBox.list(1) > but I have an error message : > Not a function > > What I mistaked? label.caption = ListBox.list[1] Ja

Re: [Gambas-user] Listbox.List(x) error

2008-09-04 Thread Sevoir
Hi, Thanks your answer, but problem still Regards, Sevoir 2008. 09. 4, csütörtök keltezéssel 21.26-kor Jacky ezt írta: > Le Thursday 04 September 2008 20:35:47 Sevoir, vous avez écrit : > > Hi All! > > > > I have a problem. > > I want get a Listbox item text value to a label.caption .. > > label

Re: [Gambas-user] Listbox.List(x) error

2008-09-04 Thread Jacky
Le Thursday 04 September 2008 20:35:47 Sevoir, vous avez écrit : > Hi All! > > I have a problem. > I want get a Listbox item text value to a label.caption .. > label.caption = ListBox.list(1) > but I have an error message : > Not a function > > What I mistaked? > > Regards, Sevoir Use label.Text i

[Gambas-user] Listbox.List(x) error

2008-09-04 Thread Sevoir
Hi All! I have a problem. I want get a Listbox item text value to a label.caption .. label.caption = ListBox.list(1) but I have an error message : Not a function What I mistaked? Regards, Sevoir - This SF.Net email is sp

Re: [Gambas-user] Creating a library

2008-09-04 Thread gambas
Am Donnerstag, 4. September 2008 16:39:06 schrieb Doriano Blengino: > Make a (dummy?) project with your libray in it; give it a meaningful name. > Edit the library source: put a "EXPORT" alone in a line at the beginning: > > ' Gambas module file > > EXPORT > > PUBLIC SUB printit(st AS

Re: [Gambas-user] Creating a library

2008-09-04 Thread Doriano Blengino
[EMAIL PROTECTED] ha scritto: > Am Donnerstag, 4. September 2008 14:33:03 schrieb Doriano Blengino: > >> [EMAIL PROTECTED] ha scritto: >> >>> Am Mittwoch, 3. September 2008 10:56:37 schrieb [EMAIL PROTECTED]: >>> Hi List! I've written a kind of library, where I droped

Re: [Gambas-user] Creating a library

2008-09-04 Thread gambas
Am Donnerstag, 4. September 2008 14:33:03 schrieb Doriano Blengino: > [EMAIL PROTECTED] ha scritto: > > Am Mittwoch, 3. September 2008 10:56:37 schrieb [EMAIL PROTECTED]: > >> Hi List! > >> > >> I've written a kind of library, where I droped my standard routines. At > >> the moment, I have to compi

Re: [Gambas-user] Creating a library

2008-09-04 Thread Emil Tchekov
I am sorry, I am not skilled enough to answer. Why do you not try to search the wikis & message archive. I think you can find what you are looking for regards Emil -Ursprungliche Nachricht- Von: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Auftrag von [EMAIL PROTECTED] Gesendet: Donnerst

Re: [Gambas-user] Creating a library

2008-09-04 Thread Doriano Blengino
[EMAIL PROTECTED] ha scritto: > Am Mittwoch, 3. September 2008 10:56:37 schrieb [EMAIL PROTECTED]: > >> Hi List! >> >> I've written a kind of library, where I droped my standard routines. At the >> moment, I have to compile this class every time with my projects. >> >> Is there someone on this l

Re: [Gambas-user] Creating a library

2008-09-04 Thread gambas
Am Mittwoch, 3. September 2008 10:56:37 schrieb [EMAIL PROTECTED]: > Hi List! > > I've written a kind of library, where I droped my standard routines. At the > moment, I have to compile this class every time with my projects. > > Is there someone on this list, who can tell me, what I have to do, to

Re: [Gambas-user] Q:how to save a file.png into Postgresql [solved]

2008-09-04 Thread Benoit Minisini
On jeudi 04 septembre 2008, richard terry wrote: > On Wed, 3 Sep 2008 07:51:03 pm Ron_1st wrote: > > Finally solved. > > I did try and try inserting the E in the hint, but put in inside the qotes > and not outside it so this works: > > insert into Insert into clin_consult.temp_image(piccie) values