Re: [Gambas-user] Colourchooser question

2011-05-27 Thread richard terry
On Saturday 28 May 2011 16:11:42 richard terry wrote: Umm.. do answer my own question, after giving up fiddling I just realised I could over-ride the change event and get the value. Regards Richard > I Wondered if there was any way one could detect the slider event in the > colour chooser cont

[Gambas-user] Colourchooser question

2011-05-27 Thread richard terry
I Wondered if there was any way one could detect the slider event in the colour chooser control. Any help appreciated. Regards Richard -- vRanger cuts backup time in half-while increasing security. With the market-lead

[Gambas-user] File Operations

2011-05-27 Thread Christian DaGeek247 Stephens
Hey all, im back again. How would I open/edit/and delate a file in gambas? i have no idea where to look in the included docs. -- *Live Chat room!* *http://dglivechat.tk My Website: dageek247.tk* *Calvin: *BU-URP! *Mom:* Good heavens, Calvin! What do we say after that? *Calvin:* "Must be a barge c

Re: [Gambas-user] Gambas 3 first release candidate

2011-05-27 Thread Benoît Minisini
> On Fri, May 27, 2011 at 12:08 PM, Ian Haywood wrote: > > I have also changed the distro list to match Laurent's archlinux > > packages, > > I mean the binary *package* list sorry. > > PS the best way to get into Ubuntu and friends is to get the packages > in Debian, then it > will filter its w

Re: [Gambas-user] another extern math problem

2011-05-27 Thread Benoît Minisini
> Hi, > i have another extern math library problem and need your help. > i want to use the peakfind from fityk lib. > The working C example code looks pretty easy and the c-code and the > header file is included in project. Please have a look on the gambas3 > project and explain what i need to do t

Re: [Gambas-user] 'Form.Name' is badly overridden in class 'FMain'

2011-05-27 Thread Benoît Minisini
> Hi, > I am trying to convert my old application from GAMBAS 2 to GAMBAS3. > > On GAMBAS3 I get the error > > 'Form.Name' is badly overridden in class 'FMain' > > > when I call FMain.show > > > Can somebody please help me to understand this matter ? > > > Salud > > Pino > This is explai

Re: [Gambas-user] GAMBAS3.0 RC1 crash

2011-05-27 Thread Benoît Minisini
> Hi > Run GAMBAS3 and load an application, then help ? and F1 , then select > the language Italian or any other language. > > All will close without any message. > > Regards > Pino > I cannot reproduce it. Can you give more details about your system? -- Benoît Minisini

[Gambas-user] GAMBAS3.0 RC1 crash

2011-05-27 Thread Pino Zollo
Hi Run GAMBAS3 and load an application, then help ? and F1 , then select the language Italian or any other language. All will close without any message. Regards Pino -- vRanger cuts backup time in half-while increasing

Re: [Gambas-user] Release of Gambas 2.23.1

2011-05-27 Thread Laurent Carlier
Le Friday 27 May 2011 17:00:24, Benoît Minisini a écrit : > > Hi, > > Some problem with 2.23.1 . the 2.23.0 did compile fine. > > > > Salud > > > > Pino > > Oops, sorry. I have updated the source package, and now it should compile > fine. I got also some problem building db.firebird compone

Re: [Gambas-user] Release of Gambas 2.23.1

2011-05-27 Thread Benoît Minisini
> Hi, > Some problem with 2.23.1 . the 2.23.0 did compile fine. > > Salud > > Pino > > Oops, sorry. I have updated the source package, and now it should compile fine. -- Benoît Minisini -- vRanger cuts backup t

[Gambas-user] 'Form.Name' is badly overridden in class 'FMain'

2011-05-27 Thread Pino Zollo
Hi, I am trying to convert my old application from GAMBAS 2 to GAMBAS3. On GAMBAS3 I get the error 'Form.Name' is badly overridden in class 'FMain' when I call FMain.show Can somebody please help me to understand this matter ? Salud Pino --

[Gambas-user] Release of Gambas 2.23.1

2011-05-27 Thread Pino Zollo
Hi, Some problem with 2.23.1 . the 2.23.0 did compile fine. Salud Pino -- make[4]: se ingresa al directorio «/usr/src/gambas2-2.23.1/gb.v4l/src» /bin/bash ../libtool --tag=CC --mode=compile gcc

[Gambas-user] another extern math problem

2011-05-27 Thread wally
Hi, i have another extern math library problem and need your help. i want to use the peakfind from fityk lib. The working C example code looks pretty easy and the c-code and the header file is included in project. Please have a look on the gambas3 project and explain what i need to do to get it wor

Re: [Gambas-user] What is faster: OPEN or File.Load?

2011-05-27 Thread Benoît Minisini
> > When I have different directories which contain text files, and I have > > to open each file and read only the first line of it, which one will be > > faster and more efficient: > > > > FOR > > > > OPEN > > > > read first line > > > > CLOSE > > list.Add > >

Re: [Gambas-user] What is faster: OPEN or File.Load?

2011-05-27 Thread Benoît Minisini
> When I have different directories which contain text files, and I have > to open each file and read only the first line of it, which one will be > faster and more efficient: > > FOR > OPEN > read first line > CLOSE > list.Add > NEXT > > or > > FOR > File.L

Re: [Gambas-user] We live a dangerous life sometimes...

2011-05-27 Thread Benoît Minisini
> Am 26.05.2011 22:41, schrieb Benoît Minisini: > >> Sometimes bad power cable connection does things like that, but maybe > >> Benoit has already check those. > >> > >> Jussi > > > > I come back, with a new firmware. > > > > I have two SATA hard disks. The first one is the original one, and I h

[Gambas-user] What is faster: OPEN or File.Load?

2011-05-27 Thread Rolf-Werner Eilert
When I have different directories which contain text files, and I have to open each file and read only the first line of it, which one will be faster and more efficient: FOR OPEN read first line CLOSE list.Add NEXT or FOR File.Load(...) S