Re: [Gambas-user] LastModified value for hidden files not available

2013-05-21 Thread Benoît Minisini
Le 22/05/2013 08:22, bill-lancaster a écrit : > If I list the LastModified value for all the files in a folder some of them > are null values. > > All of those with null values are hidden files. > > Is this a bug or something on mu system? > > Any ideas would be welcome. > The only possible case w

[Gambas-user] LastModified value for hidden files not available

2013-05-21 Thread bill-lancaster
If I list the LastModified value for all the files in a folder some of them are null values. All of those with null values are hidden files. Is this a bug or something on mu system? Any ideas would be welcome. -- View this message in context: http://gambas.8142.n7.nabble.com/LastModified-v

[Gambas-user] Detecting if a scroll bar has scrolled to the bottom.

2013-05-21 Thread Richard Terry
In our installation wizard for EasyGP, Ian and I have put in the gnu public licence. I want to be able to detect if the user has scrolled all the way to the bottom before I allow the wizard to progress to the next page, after they have checked the 'agree' checkbox. Any help appreciated. richa

Re: [Gambas-user] Global error management routine

2013-05-21 Thread Richard Terry
Tobias Boege wrote: > Hi Benoit, > > when programming a component in C/C++, one can use the error hook to execute > a function when the interpreter is about to abort because of an error. > > In Gambas itself, we only have the local Catch blocks to execute code in > case of error in this or any cont

Re: [Gambas-user] gbc3-gb_error.o compiling rev #5670

2013-05-21 Thread Tobias Boege
On Tue, 21 May 2013, Emanuele Sottocorno wrote: > hi Tobi, > thanks for the answer, but same error with revision #5671. > I use to ./reconf-all ./configure -C make for any svn update from trunk > directory should i issue the sequence for the main directory instead? > > Emanuele It won't be any di

Re: [Gambas-user] New gb.logging component

2013-05-21 Thread Jesus
El 20/05/13 04:44, Sebastian Kulesz escribió: > Hey there! > > I just pushed the new component to the svn repository. It provides a > flexible API for logging and tracking events while the software is running. > > It outputs to stdout by default, but you can simply point to a file when > creating a

Re: [Gambas-user] gbc3-gb_error.o compiling rev #5670

2013-05-21 Thread Emanuele Sottocorno
hi Tobi, thanks for the answer, but same error with revision #5671. I use to ./reconf-all ./configure -C make for any svn update from trunk directory should i issue the sequence for the main directory instead? Emanuele Il giorno mar, 21/05/2013 alle 17.52 +0200, Tobias Boege ha scritto: > On Tue,

Re: [Gambas-user] gbc3-gb_error.o compiling rev #5670

2013-05-21 Thread Tobias Boege
On Tue, 21 May 2013, Emanuele Sottocorno wrote: > Rev. #5670 make aborts immediately with error: > make[4]: enter directory "/home/emanuele/Gambas3/trunk/main/gbc" > CC gbc3-gb_error.o > gcc: error: 5638: File o directory does not exists > > Logs and sysinfo attached. > My fault. Could you

[Gambas-user] gbc3-gb_error.o compiling rev #5670

2013-05-21 Thread Emanuele Sottocorno
Rev. #5670 make aborts immediately with error: make[4]: enter directory "/home/emanuele/Gambas3/trunk/main/gbc" CC gbc3-gb_error.o gcc: error: 5638: File o directory does not exists Logs and sysinfo attached. rev5670.logs.tar.gz Description: application/compressed-tar

[Gambas-user] Global error management routine

2013-05-21 Thread Tobias Boege
Hi Benoit, when programming a component in C/C++, one can use the error hook to execute a function when the interpreter is about to abort because of an error. In Gambas itself, we only have the local Catch blocks to execute code in case of error in this or any context above in the stack. However