Re: [Gambas-user] Gambas 3.4.2 hanging on startup (Ubuntu 12.10 with Cinnamon desktop)

2013-07-29 Thread Cam Era
On Tue, Jul 30, 2013 at 12:48 PM, Bruce wrote: > > > This happened to me several months ago. It was caused by a non-existent > network printer. From memory, cups goes off looking for that printer > forever for some reason or other. > Bruce, you are indeed correct, modulo the non-existence netw

Re: [Gambas-user] Gambas 3.4.2 hanging on startup (Ubuntu 12.10 with Cinnamon desktop)

2013-07-29 Thread Bruce
On Mon, 2013-07-29 at 12:18 +1000, Cam Era wrote: > Benoît, > > thanks for zeroing in on this issue. I'll check the situation out and > report back if I can find any generic fix that can help others. > > -- Con > > > On Mon, Jul 29, 2013 at 12:15 PM, Benoît Minisini < > gam...@users.sourceforge

[Gambas-user] ftp client

2013-07-29 Thread Shane
how do i redirect the commands printed to the console to a text area or something when connecting to a ftp server? -- Get your SQL database under version control now! Version control is standard for application code, but

Re: [Gambas-user] FtpClient from gb.net.curl has problems with files > 2 GiB

2013-07-29 Thread Benoît Minisini
Le 29/07/2013 16:09, Tobias Boege a écrit : > Hi, > > someone pointed out that he has problems with uploading files > 2 GiB with > the FtpClient. FileZilla and the curl command line tool are working fine so > it's neither curl nor the server who are misbehaving. > > I don't know curl very well but

Re: [Gambas-user] Receiving an email

2013-07-29 Thread Rolf-Werner Eilert
Am 26.07.2013 22:38, schrieb Benoît Minisini: > Le 26/07/2013 20:58, Sprachschule Eilert a écrit : >> Hi Randall, >> >> I now got the gb.net.pop3 component to work, and your example works too. >> However, I only receive the message headers, not the message bodies, and >> the messages aren't downl

Re: [Gambas-user] Receiving an email

2013-07-29 Thread Rolf-Werner Eilert
Thanks a lot for all the good advice. In the end, it turned out that it was only the option to expect mails with more than line which was missing, i. e. a mere TRUE. Everything is running great now! Rolf Am 26.07.2013 23:04, schrieb Randall Morgan: > Yes, Benoit is right. > > I just did a qui

Re: [Gambas-user] Time Format => Error

2013-07-29 Thread Kende Krisztián
Or you may calculate manually: Dim nNum As Long = 32768 Dim nHour As Long Dim nMin, nSec As Byte nHour = Int(nNum / 3600) nMin = Int(nNum / 60) - nHour * 60 nSec = nNum - (nHour * 3600 + nMin * 60) > > Hello. > It was good to use Time(0, 0, seconds) but for now I need to use more > seconds. >

Re: [Gambas-user] Time Format => Error

2013-07-29 Thread Benoît Minisini
Le 29/07/2013 18:22, abbat81 a écrit : > Benoît Minisini wrote >> Format(nSeconds / 3600 / 24, "hh:nn:ss") > > > Benoît, I cant understand how to use this. > > All I got - "bad format string" > Sorry, I meant: Format(CDate(nSeconds / 3600 / 24), "hh:nn:ss") -- Benoît Minisini -

Re: [Gambas-user] Time Format => Error

2013-07-29 Thread abbat81
Benoît Minisini wrote > Format(nSeconds / 3600 / 24, "hh:nn:ss") Benoît, I cant understand how to use this. All I got - "bad format string" -- View this message in context: http://gambas.8142.n7.nabble.com/Time-Format-Error-tp42654p42656.html Sent from the gambas-user mailing list archive a

Re: [Gambas-user] Time Format => Error

2013-07-29 Thread Benoît Minisini
Le 29/07/2013 17:42, abbat81 a écrit : > > Hello. > It was good to use Time(0, 0, seconds) but for now I need to use more > seconds. > > So, now I get: > > Print Time(0, 0, 32767) => 09:06:07 > Print Time(0, 0, 32768) => 14:53:52 (00/00/ 14:53:52) > > How can I get Format("hh:nn:ss") from se

[Gambas-user] Time Format => Error

2013-07-29 Thread abbat81
Hello. It was good to use Time(0, 0, seconds) but for now I need to use more seconds. So, now I get: Print Time(0, 0, 32767) => 09:06:07 Print Time(0, 0, 32768) => 14:53:52 (00/00/ 14:53:52) How can I get Format("hh:nn:ss") from seconds? Thanks. -- View this message in context: http

[Gambas-user] FtpClient from gb.net.curl has problems with files > 2 GiB

2013-07-29 Thread Tobias Boege
Hi, someone pointed out that he has problems with uploading files > 2 GiB with the FtpClient. FileZilla and the curl command line tool are working fine so it's neither curl nor the server who are misbehaving. I don't know curl very well but the ftpupload.c example in the curl sources uses a CURLO