Re: [Gambas-user] PostgreSQL multiple column problem

2012-10-17 Thread Markus Schatten
Dear Fabien and Ian, thank you for your reply. I was kind of hoping that there is a way to index the results. I started of to write a query rewriter, but got soon into trouble with lots of possible ways of writing a query. I would probably need a grammar parser to do that ;-) Anyways, after looki

Re: [Gambas-user] Forms controls type

2012-10-17 Thread Fabien Bodard
:-) Le 17 oct. 2012 19:31, "Ricardo Díaz Martín" a écrit : > Thanks a lot Fabien. I was getting crazy cause I couldn't remember the way > to do it. > > Regards, > Ricardo > > 2012/10/17 Fabien Bodard > > > > > a écrit : > > > > > Hi, > > > > > > How can I know the control type of MyForm.Controls

Re: [Gambas-user] Tutorial on building a "user control"?

2012-10-17 Thread Gerry Douglas
Dear Fabien, Thank you for your advice. I have looked at the code for those user controls, and I believe I understand the syntax for creating a user control. However, I am not clear on how in the IDE to actually do this. For example, I want to create a control that has on it a grid and a scrollb

Re: [Gambas-user] gb.net.pop3 example?

2012-10-17 Thread Sebi
I have a really simple example, but it's not finished yet. I will upload it tomorrow once it's finished ;) -Original Message- From: "Christer Johansson" Date: Wed, 17 Oct 2012 18:05:11 To: 'mailing list for gambas users' Reply-To: mailing list for gambas users Subject: [Gambas-user] gb.

Re: [Gambas-user] Forms controls type

2012-10-17 Thread Ricardo Díaz Martín
Thanks a lot Fabien. I was getting crazy cause I couldn't remember the way to do it. Regards, Ricardo 2012/10/17 Fabien Bodard > > a écrit : > > > Hi, > > > > How can I know the control type of MyForm.Controls["SomeControl"] ? > > (ComboBox, TextBox, TexArea, ) > > > > Sorry if it's too bas

Re: [Gambas-user] Forms controls type

2012-10-17 Thread Fabien Bodard
Object. Type Or testing with is keyword http://www.gambasdoc.org/help/comp/gb/object/type?v3 Le 17 oct. 2012 18:00, "Ricardo Díaz Martín" a écrit : > Hi, > > How can I know the control type of MyForm.Controls["SomeControl"] ? > (ComboBox, TextBox, TexArea, ) > > Sorry if it's too basic but I

Re: [Gambas-user] Gambas 2.22 issue

2012-10-17 Thread Fabien Bodard
Then have you trying to migrate to gambas 3? I have if yes... Is the problem is always here? (I know this is not the soluce :-)) but just a suggest. Send us a gb2 example of your problem Le 17 oct. 2012 17:49, "Fabien Bodard" a écrit : > Can you say us on witch distribution the problem occurs and

Re: [Gambas-user] Writing an article about Gambas 3.3

2012-10-17 Thread Fabián Flores Vadell
I have written an article about Gambas 3.3 in french on the linuxfr.org > news site. > > I want to translate that article in english. Does anyone know the best > places where that article should be submitted? I just know slashdot.org. > > Regards, > > -- > Benoît Minisini > I can translate it fro

[Gambas-user] class overriding is retrospective now

2012-10-17 Thread Fabián Flores Vadell
Hi Benoît. I read you message in the french mailing list about that "class overriding" is retrospective now, saying more or less this: If you reimplements a existing class named A, the effect will be retroactive on other classes already loaded and optimized using the Class A. Before it was not

[Gambas-user] gb.net.pop3 example?

2012-10-17 Thread Christer Johansson
Anyone used the new POP3 component and have a simple example to share? I'm a bit unsure how to use it in a CLI app since it's not creatable like ClientSocket etc. /CJ -- Everyone hates slow websites. So do we. Make yo

[Gambas-user] Forms controls type

2012-10-17 Thread Ricardo Díaz Martín
Hi, How can I know the control type of MyForm.Controls["SomeControl"] ? (ComboBox, TextBox, TexArea, ) Sorry if it's too basic but I'm stucked! :-( Regards, Ricardo Díaz -- Everyone hates slow websites. So do we. Mak

Re: [Gambas-user] Gambas 2.22 issue

2012-10-17 Thread Fabien Bodard
Can you say us on witch distribution the problem occurs and if you can send us a short example that reproduce the bug, we will take a look. Le 17 oct. 2012 17:15, "Antonio Teixeira" a écrit : > Dear All, > > I am a coder on a Portuguese company and we work with Gambas for almost 3 > years. We hav

Re: [Gambas-user] Writing an article about Gambas 3.3

2012-10-17 Thread charlesg
Benoît Minisini wrote: > > Does anyone know the best places where that article should be submitted? > Muktware is normally an interesting read. Can I offer any help with translation? -- View this message in context: http://old.nabble.com/Writing-an-article-about-Gambas-3.3-tp34567096p34

[Gambas-user] Writing an article about Gambas 3.3

2012-10-17 Thread Benoît Minisini
Hi, I have written an article about Gambas 3.3 in french on the linuxfr.org news site. I want to translate that article in english. Does anyone know the best places where that article should be submitted? I just know slashdot.org. Regards, -- Benoît Minisini

Re: [Gambas-user] PostgreSQL multiple column problem

2012-10-17 Thread Ian Haywood
On Wed, Oct 17, 2012 at 7:32 AM, Markus Schatten wrote: > queries. Yes, I could parse each query and rewrite it before > executing, but this would be at least an "ugly hack". No, I think its your best solution Maybe your users can just type in the "where" part of the query and then you add the r

Re: [Gambas-user] Make form permanantly active

2012-10-17 Thread Ian Haywood
On Wed, Oct 17, 2012 at 6:04 PM, Gavin Reeve Frost wrote: > OK since i cannot capture a key press outside of a form. > > Does anybody know if there is a way to make > a form permanently active even if another application is > being used like Firefox the form must remain active > so that my key pre

Re: [Gambas-user] PostgreSQL multiple column problem

2012-10-17 Thread Fabien Bodard
I think there is not simple way for that. It's a collection of names. You need to distinct the by your self. Le 16 oct. 2012 22:34, "Markus Schatten" a écrit : > Dear all, > > I have a problem with a PostgreSQL connection (haven't tested it with > other dbms'). When a query has the same attribute

[Gambas-user] Make form permanantly active

2012-10-17 Thread Gavin Reeve Frost
OK since i cannot capture a key press outside of a form. Does anybody know if there is a way to make a form permanently active even if another application is being used like Firefox the form must remain active so that my key press is captured by the form. I only want one key to be captured by my f