Re: [Gambas-user] Source code - where's the download link gone

2011-04-06 Thread Kevin Fishburne
On 04/07/2011 12:26 AM, richard terry wrote: > Hi LIst > > Tried the new web site, couldn't find anywhere the link to the page telling > how > to download the sources to compile??? > > Can some one post this or send me the link. > > Regards > > Richard > > -

[Gambas-user] Source code - where's the download link gone

2011-04-06 Thread richard terry
Hi LIst Tried the new web site, couldn't find anywhere the link to the page telling how to download the sources to compile??? Can some one post this or send me the link. Regards Richard -- Xperia(TM) PLAY It's a major

Re: [Gambas-user] gb3 RC1: using structures to replace the loss of Mk$ functions

2011-04-06 Thread Kevin Fishburne
On 04/05/2011 03:34 AM, Benoît Minisini wrote: >> On 04/05/2011 01:39 AM, Kevin Fishburne wrote: >>> Alright, I've transformed all the networking code to the suggested >>> solution, and it's so close to working I can smell it. While there is >>> more code now, I like it better as it's easier to rea

Re: [Gambas-user] Problems with gbs

2011-04-06 Thread John Spikowski
On Wed, 2011-04-06 at 23:20 +0300, Jussi Lahtinen wrote: > I tried your example, doesn't work with my system. > What is your system? Ubuntu 10.10 32 bit. -- Xperia(TM) PLAY It's a major breakthrough. An authentic gaming

Re: [Gambas-user] New Gambas website design

2011-04-06 Thread Kevin Fishburne
On 04/06/2011 03:25 PM, Benoît Minisini wrote: >> On 04/03/2011 06:47 PM, Benoît Minisini wrote: >>> Now I'm waiting for help and comments.. >> I just noticed that in Chrome one of the zoom levels creates artifacts >> in some of the text. Zooming way in (making things bigger) causes Chrome >> to be

Re: [Gambas-user] Problems with gbs

2011-04-06 Thread Jussi Lahtinen
I tried your example, doesn't work with my system. $ gbs3 testscript.gambas nothing $ gbs3 -v testscript.gambas nothing $ gbs3 -v -c testscript.gambas gbs: create project gbs: process file: ... testscript.gambas gbs: Main procedure not defined, create it What is your system? Jussi On Wed, A

Re: [Gambas-user] SQLite3 Query failed: SQL error or missing database

2011-04-06 Thread Benoît Minisini
> Hello, > > when I try to get data out of a table "dummy" with a > DataSource-Control and a DataView-Control, I get this error: "Query > failed: SQL error or missing database". > With DB.Debug = "on" I can see that Gambas compose a wrong SQL-Statement. > e.g. > Table: dummy > Fields: fe_id, fe_na

Re: [Gambas-user] New Gambas website design

2011-04-06 Thread Benoît Minisini
> On 04/03/2011 06:47 PM, Benoît Minisini wrote: > > Now I'm waiting for help and comments.. > > I just noticed that in Chrome one of the zoom levels creates artifacts > in some of the text. Zooming way in (making things bigger) causes Chrome > to be unable to display the page, giving the "Aw, Sna

Re: [Gambas-user] New website

2011-04-06 Thread Benoît Minisini
> On Tue, 2011-04-05 at 00:49 +0200, Benoît Minisini wrote: > > The new website has been uploaded to sourceforge. > > It would be great if you could get a few Gambas 3 screen shots in the > gallery. It's a bit dated as it stands. > I added two recent screenshots. If you have ideas for a third on

Re: [Gambas-user] Problems with gbs

2011-04-06 Thread John Spikowski
On Wed, 2011-04-06 at 21:12 +0300, Jussi Lahtinen wrote: > I created file named testscript, then I pasted code from > http://www.gambasdoc.org/help/doc/benchmark/polynom . > But I don't think it really matters since I can't run any code. > Even simple code as following fails with same errors; > >

Re: [Gambas-user] Problems with gbs

2011-04-06 Thread Jussi Lahtinen
I created file named testscript, then I pasted code from http://www.gambasdoc.org/help/doc/benchmark/polynom . But I don't think it really matters since I can't run any code. Even simple code as following fails with same errors; #!/usr/bin/env gbs3 Print "Hello?" Jussi 2011/4/6 Benoît Minisin

Re: [Gambas-user] Problems with gbs

2011-04-06 Thread Benoît Minisini
> Hi! > I tried to run the benchmarks. But I couldn't run gambas script. > > $ gbs3 -v -c ./testscript > gbs: Main procedure not defined, create it > > OK, then I added "Sub Main()" and "End" to the script. > > $ gbs3 -v -c ./testscript > gbs: Main procedure not defined, create it > MMain.module

[Gambas-user] Problems with gbs

2011-04-06 Thread Jussi Lahtinen
Hi! I tried to run the benchmarks. But I couldn't run gambas script. $ gbs3 -v -c ./testscript gbs: Main procedure not defined, create it OK, then I added "Sub Main()" and "End" to the script. $ gbs3 -v -c ./testscript gbs: Main procedure not defined, create it MMain.module:42: error: 'Main' alr

Re: [Gambas-user] Global reading of events

2011-04-06 Thread Jussi Lahtinen
> But my question was: Why do Form_KeyPress(), Form_MouseDown() and > Form_MouseWheel() catch no event? > Impossible to say without more code. I don't think the reason is in this part of code. No need to send whole project, just version where you have isolated the problem. It is much more easy to

Re: [Gambas-user] Global reading of events

2011-04-06 Thread Sprachschule Eilert
Don't know where you're stuck. Why control Timer2? It's there, it's running... :-) Whenever Timer2 ticks, it checks if there have been mouse or keyboard events in the meantime (Timer2EventZlr means "event counter for Timer2"). If yes, only the counter is resetted. If not, "tab" (a TabStrip whi

Re: [Gambas-user] Global reading of events

2011-04-06 Thread Jussi Lahtinen
What is Timer2EventZlr? I can't see any code that controls timer itself. Please send whole project. Jussi On Wed, Apr 6, 2011 at 13:29, Rolf-Werner Eilert < eilert-sprac...@t-online.de> wrote: > I'd like to build something that hides areas with personally sensitive > data in a program after a t

[Gambas-user] Global reading of events

2011-04-06 Thread Rolf-Werner Eilert
I'd like to build something that hides areas with personally sensitive data in a program after a time when the user didn't do anything in the program. The easiest way to achieve this would be to watch all mouse and key events for the whole program and just count. A timer would look from time t

[Gambas-user] Tableview use of combobox problem

2011-04-06 Thread Bill-Lancaster
I have a table view which has a list of values in column 0. I want to select from a range of items (sInstruments[]) in column 1 . This code:- IF tbvPerf.Column = 1 THEN tbvPerf.Edit(sInstruments, FALSE) works fine. But when another cell is selected the previous cell is goes blank. Where am I