Re: [Gambas-user] web browser.

2009-08-28 Thread Dimitris Anogiatis
Hey Steven, it does work in gnome. Because the webbrowser control is based on a KDE library if you load the kbuildsycoca package (or the one that contains it) and re-run the webbrowser code it might work. I'm running it on a Debian Lenny and Gnome 2.22.3. And it works just fine. Regards, Dimit

Re: [Gambas-user] web browser.

2009-08-28 Thread Steven James Drinnan
Does not work in gnome, need KDE to run. You may want to add that to your requirements. Steven Drinnan On Fri, 2009-08-28 at 18:11 -0600, Dimitris Anogiatis wrote: > abdurrahman > > it works pretty well, > keep up the great work :) > > Regards > Dimitris > > On Fri, Aug 28, 2009 at 3:45 PM,

[Gambas-user] DataControl and "No current Connection" Error

2009-08-28 Thread Mathias Ebermann
Hi, new in Gambas, I encountered the following problem: I have a DataSource and a DataBrowser and managed to display the data fine. Now, I wanted to display details of the data in several DataControls. If I fill the "Field" property of the DataControls (e.g. Artikel), I get an Error Message "No

Re: [Gambas-user] web browser.

2009-08-28 Thread Dimitris Anogiatis
abdurrahman it works pretty well, keep up the great work :) Regards Dimitris On Fri, Aug 28, 2009 at 3:45 PM, abdurrahman ulusoy wrote: > when i wait for opengl selection :) , i add some codes to webbrowser (in > gambas examples). > > if you want to develope gambasweb codes here > > http://cod

Re: [Gambas-user] web browser.

2009-08-28 Thread craf
it's great¡¡¡. -Mensaje original- De: abdurrahman ulusoy Reply-to: mailing list for gambas users Para: mailing list for gambas users Asunto: [Gambas-user] web browser. Fecha: Fri, 28 Aug 2009 14:45:44 -0700 (PDT) when i wait for opengl selection :) , i add some codes to webbrowser (in

[Gambas-user] web browser.

2009-08-28 Thread abdurrahman ulusoy
when i wait for opengl selection :) , i add some codes to webbrowser (in gambas examples). if you want to develope gambasweb codes here  http://code.google.com/p/gambasweb/ ___ Yahoo! Türkiye açıldı! http://yahoo.com.tr

Re: [Gambas-user] configuring toolbar in code

2009-08-28 Thread Benoît Minisini
> On Friday 28 August 2009 08:14:51 Benoît Minisini wrote: > > > On Friday 28 August 2009 07:37:46 Benoît Minisini wrote: > > > > > I wondered if anyone had the code/knew how to make ones program > > > > > react to the user clickign on that little vertical button on the > > > > > end of a toolbar -

Re: [Gambas-user] type mismatch: wanted integer, got string instead (solved)

2009-08-28 Thread Fabien Bodard
try this IF NOT sRain THEN IF InStr(LCase(sRain), "x") > 0 OR InStr(sRain, "-") > 0 THEN fRain=0 ELSE TRY fRain = CFloat(sRain) IF ERROR THEN fRain=-1 'Not a Valid Number ENDIF ELSE fRain=-1 ENDIF -- Let Cr

Re: [Gambas-user] type mismatch: wanted integer, got string instead (solved)

2009-08-28 Thread Fabien Bodard
2009/8/26 MSulchan Darmawan : > Pada Tue, 25 Aug 2009 04:29:32 -0600 > Dimitris Anogiatis menulis: > >> give it a try MSulchan and tell me if it works for you > > Thank you Dimitris, after a little try and error, I change the code > into like this : > >      IF IsNull(Val(sRain)) = FALSE THEN >