Re: [Gambas-user] Gambas-user Digest, Vol 39, Issue 47

2009-08-14 Thread Виталий
Привет! А русскоязычные рассылку читают? пишите vitaf{cat)rbcmail(point]ru Send Gambas-user mailing list submissions to gambas-user@lists.sourceforge.net To subscribe or unsubscribe via the World Wide Web, visit https://lists.sourceforge.net/lists/listinfo/gambas-user or, via emai

Re: [Gambas-user] setfocus eats way too much time

2009-08-14 Thread Jean-Yves F. Barbier
Jean-Yves F. Barbier a écrit : > Hi list, > > I've got a popup that is a small frame containing a TextArea & 2 buttons. > > In order to do things right, I've got a default text into TextArea; but to > make sure typing will fill the TextArea, I must do 2 things: > TextArea1.SelectAll() > TextArea

[Gambas-user] setfocus eats way too much time

2009-08-14 Thread Jean-Yves F. Barbier
Hi list, I've got a popup that is a small frame containing a TextArea & 2 buttons. In order to do things right, I've got a default text into TextArea; but to make sure typing will fill the TextArea, I must do 2 things: TextArea1.SelectAll() TextArea1.SetFocus() however, SetFocus() introduce a w

Re: [Gambas-user] popup masked

2009-08-14 Thread Jean-Yves F. Barbier
Fabien Bodard a écrit : > You must to set the popup on the form > > Set the property of the list (ignore=true) > > > The position of your popup is > > iPos = listview.left > hCont = listview.parent > > do > iPos+=hCont.Left > hCont = hcont.parent > if hCont is WIndow then break > loop >

Re: [Gambas-user] intercept focus

2009-08-14 Thread Jean-Yves F. Barbier
Fabien Bodard a écrit : ... > Public sub MyWidjet_Leave() > > End thanks fabien (and oops: I didn't saw it). -- QOTD: "I'm on a seafood diet -- I see food and I eat it." -- Let Crystal Reports handle the report

Re: [Gambas-user] Question about gb.db

2009-08-14 Thread Jean-Yves F. Barbier
Charlie Reinl a écrit : > Am Freitag, den 14.08.2009, 20:10 +0200 schrieb Jean-Yves F. Barbier: >> Charlie Reinl a écrit : >> ... >>> I find the the result=$hConn.Find(table,Request, RequestArgu,...) way >>> useful, only one thing I miss, to sort the results. >>> And for that I ask. >> Ok Charlie,

Re: [Gambas-user] popup masked

2009-08-14 Thread Fabien Bodard
You must to set the popup on the form Set the property of the list (ignore=true) The position of your popup is iPos = listview.left hCont = listview.parent do iPos+=hCont.Left hCont = hcont.parent if hCont is WIndow then break loop It's the method used for help popup, autocompletion lis

Re: [Gambas-user] Question about gb.db

2009-08-14 Thread Charlie Reinl
Am Freitag, den 14.08.2009, 20:10 +0200 schrieb Jean-Yves F. Barbier: > Charlie Reinl a écrit : > ... > > I find the the result=$hConn.Find(table,Request, RequestArgu,...) way > > useful, only one thing I miss, to sort the results. > > And for that I ask. > > Ok Charlie, that's interesting to know

Re: [Gambas-user] intercept focus

2009-08-14 Thread Fabien Bodard
2009/8/14 Jean-Yves F. Barbier <12u...@gmail.com>: > Hi list, > > Is there a possibility to intercept events such as FocusIN/FocusOUT (well, not > exactly: mouse hovering) from a widget? > > I want to use that to make my popup Invisible when mouse cursor leaves the > widget. > > JY > -- > To fear

Re: [Gambas-user] Question about gb.db

2009-08-14 Thread Jean-Yves F. Barbier
Charlie Reinl a écrit : ... > I find the the result=$hConn.Find(table,Request, RequestArgu,...) way > useful, only one thing I miss, to sort the results. > And for that I ask. Ok Charlie, that's interesting to know it exist. But may be you could re-issue the same command changing the request to do

[Gambas-user] MP | Re: Question about gb.db

2009-08-14 Thread Jean-Yves F. Barbier
Werner a écrit : > Charlie Reinl wrote: >> Salut, >> >> till now I use the Request part in $hConn.Find to set my sorting >> "Order by" >> Is there a better/easier way, which I ignore ? >> >> Hope you have solutions. >> >> for gambas2 (2.15.2) >> >> > I do that, too. My records are only a few

Re: [Gambas-user] Question about gb.db

2009-08-14 Thread Charlie Reinl
Am Freitag, den 14.08.2009, 19:26 +0200 schrieb Jean-Yves F. Barbier: > Charlie Reinl a écrit : > > Salut, > > > > till now I use the Request part in $hConn.Find to set my sorting > > "Order by" > > Is there a better/easier way, which I ignore ? > > Salut Charlie, > > Yes there's one: include y

Re: [Gambas-user] Question about gb.db

2009-08-14 Thread Charlie Reinl
Thanks David, writing SQL strings I'm used to do. I look for the way in : result=$hConn.Find(table,Request, RequestArgu,...) There I add till now after the Request my Order by ... Charlie Am Freitag, den 14.08.2009, 10:25 -0700 schrieb David Villalobos Cambronero: > Have you ever try $Con

Re: [Gambas-user] Question about gb.db

2009-08-14 Thread Werner
Charlie Reinl wrote: > Salut, > > till now I use the Request part in $hConn.Find to set my sorting > "Order by" > Is there a better/easier way, which I ignore ? > > Hope you have solutions. > > for gambas2 (2.15.2) > > I do that, too. My records are only a few thousands so it works well. T

Re: [Gambas-user] Question about gb.db

2009-08-14 Thread Jean-Yves F. Barbier
Charlie Reinl a écrit : > Salut, > > till now I use the Request part in $hConn.Find to set my sorting > "Order by" > Is there a better/easier way, which I ignore ? Salut Charlie, Yes there's one: include your sort into the query. Query = "SELECT a,b,c FROM mytable WHERE a = 'test' ORDER by b;"

Re: [Gambas-user] Question about gb.db

2009-08-14 Thread David Villalobos Cambronero
Have you ever try $Conn.Exec() Regards -- David - Original Message From: Charlie Reinl To: mailing list for gambas users Sent: Friday, August 14, 2009 11:10:52 AM Subject: [Gambas-user] Question about gb.db Salut, till now I use the Request part in $hConn.Find to set my sorting

[Gambas-user] Question about gb.db

2009-08-14 Thread Charlie Reinl
Salut, till now I use the Request part in $hConn.Find to set my sorting "Order by" Is there a better/easier way, which I ignore ? Hope you have solutions. for gambas2 (2.15.2) -- Amicalment Charlie -- Let Crystal Re

[Gambas-user] intercept focus

2009-08-14 Thread Jean-Yves F. Barbier
Hi list, Is there a possibility to intercept events such as FocusIN/FocusOUT (well, not exactly: mouse hovering) from a widget? I want to use that to make my popup Invisible when mouse cursor leaves the widget. JY -- To fear love is to fear life, and those who fear life are already three parts

Re: [Gambas-user] Gambas 3 ./reconf-all problem

2009-08-14 Thread Laurent Carlier
Le vendredi 14 août 2009 16:42:02, vous avez écrit : > See answers below. > > > > Den Thursday 13 August 2009 23.46.20 skrev Laurent Carlier: > > > > Le jeudi 13 août 2009 14:57:13 Peter Landgren, vous avez écrit : > > > > > Hi, > > > > > > > > > > When running ./reconf-all I get after svn up to r

Re: [Gambas-user] Managing soundtracks, WAVs

2009-08-14 Thread Rob
On Friday 14 August 2009 08:15 am, Joshua Higgins wrote: > I'm sure there is an example project that handles playing wav files... I'm pretty sure I or someone else posted a simple WAV player example to the list shortly after the gb.sdl component was released (I know I wrote one but someone might

[Gambas-user] popup masked

2009-08-14 Thread Jean-Yves F. Barbier
Hi list, I'm using the excellent piece of code from Dimitris to create popups on a left click using a ListView. Construction overlapping is: Form / Panel / TreeView / ListView (that, in fact, is a direct child from Panel) My PB is if I left click too much right, the popup is cut by the panel's

Re: [Gambas-user] TrayIcon and Embeding

2009-08-14 Thread Jussi Lahtinen
There is some problems with Ubuntu and Qt... Application that use Qt start before some component of Qt it self. I'm I correct, you are on Ubuntu and your application uses Qt? Jussi On Fri, Aug 14, 2009 at 04:57, Steven James Drinnan wrote: > Thanks that did the trick. > > Funny if I run manual

Re: [Gambas-user] Gambas 3 ./reconf-all problem

2009-08-14 Thread Peter Landgren
See answers below. /Peter Den Thursday 13 August 2009 23.46.20 skrev Laurent Carlier: > Le jeudi 13 août 2009 14:57:13 Peter Landgren, vous avez écrit : > > Hi, > > > > When running ./reconf-all I get after svn up to revision 2234: > > > > [prog...@hpd1 trunk]$ ./reconf-all > > Makefile.am:54: I

Re: [Gambas-user] Managing soundtracks, WAVs

2009-08-14 Thread Joshua Higgins
I'm sure there is an example project that handles playing wav files... 2009/8/14 Rolf-Werner Eilert > Hi everyone, > > Just one question, is it possible to write an application with Gambas > that manages soundtracks (WAV-files or thelike)? Is there a component > which could be used to play (and

Re: [Gambas-user] new label

2009-08-14 Thread Fabien Bodard
public sub btn_click() dim lbl as label lbl=new label(me) as "lbl" end public sub lbl_click() print Last.name end 2009/8/14 abdurrahman ulusoy : > hi. > When user click a button create  a new label, and when click on this label > user see a new text. how can i do this. (label quantity more

[Gambas-user] Managing soundtracks, WAVs

2009-08-14 Thread Rolf-Werner Eilert
Hi everyone, Just one question, is it possible to write an application with Gambas that manages soundtracks (WAV-files or thelike)? Is there a component which could be used to play (and maybe even record) WAVs? Thanks for all your ideas... Rolf

Re: [Gambas-user] svn 2234 make error

2009-08-14 Thread o.s.p
Laurent Carlier ha scritto: > Le jeudi 13 août 2009 20:12:59 o.s.p, vous avez écrit : > >> o.s.p ha scritto: >> >>> gcc version 4.4.1 (Frugalware Linux) >>> >>> $ libtool --help >>> ... >>> host-triplet: i686-frugalware-linux-gnu >>> shell:/bin/sh >>>