[Gambas-user] strange behaviour from commandline - empty mail attachments

2013-08-15 Thread Rolf-Werner Eilert
I could build a client which prints a pdf from commandline and sends it to someone via e-mail, the Cairo class makes the pdfs. My Gambas program is called by cron. It checks a mailbox and reads the mails if any. These are contact forms. The data are then processed into a pdf and the resulting p

Re: [Gambas-user] strange behaviour from commandline - empty mail attachments

2013-08-15 Thread Bruce
On Thu, 2013-08-15 at 12:07 +0200, Rolf-Werner Eilert wrote: > I could build a client which prints a pdf from commandline and sends it > to someone via e-mail, the Cairo class makes the pdfs. > > My Gambas program is called by cron. It checks a mailbox and reads the > mails if any. These are con

Re: [Gambas-user] strange behaviour from commandline - empty mail attachments

2013-08-15 Thread Rolf-Werner Eilert
Am 15.08.2013 12:25, schrieb Bruce: > On Thu, 2013-08-15 at 12:07 +0200, Rolf-Werner Eilert wrote: >> I could build a client which prints a pdf from commandline and sends it >> to someone via e-mail, the Cairo class makes the pdfs. >> >> My Gambas program is called by cron. It checks a mailbox an

Re: [Gambas-user] strange behaviour from commandline - empty mail attachments

2013-08-15 Thread Rolf-Werner Eilert
Am 15.08.2013 12:25, schrieb Bruce: > On Thu, 2013-08-15 at 12:07 +0200, Rolf-Werner Eilert wrote: >> I could build a client which prints a pdf from commandline and sends it >> to someone via e-mail, the Cairo class makes the pdfs. >> >> My Gambas program is called by cron. It checks a mailbox an

Re: [Gambas-user] strange behaviour from commandline - empty mail attachments

2013-08-15 Thread Rolf-Werner Eilert
Am 15.08.2013 12:25, schrieb Bruce: > On Thu, 2013-08-15 at 12:07 +0200, Rolf-Werner Eilert wrote: >> I could build a client which prints a pdf from commandline and sends it >> to someone via e-mail, the Cairo class makes the pdfs. >> >> My Gambas program is called by cron. It checks a mailbox an

[Gambas-user] SMTP client doesn't want

2013-08-15 Thread Rolf-Werner Eilert
Ok folks, here's my other thread about gb.net.smtp. I want to send an e-mail with an attachment. The MTA is my German Telecom provider t-online, so I use my name as sender and log in. The guys use STARTTLS as far as I know. When I use TLS, I get an "authentication failed". When I use SSL, it

Re: [Gambas-user] Gambas-user Digest, Vol 87, Issue 24

2013-08-15 Thread PICCORO McKAY Lenz
From: Beno?t Minisini > Le 13/08/2013 18:54, PICCORO McKAY Lenz a ?crit : >> i noted also that in debian there are two devel packages from curl: >> >> libcurl4-gnutls-dev >> libcurl4-openssl-dev >> 1) agains what flavor must be complied gambas? i said clearly in previously mqails that i have curl

Re: [Gambas-user] Gambas-user Digest, Vol 87, Issue 24

2013-08-15 Thread Benoît Minisini
Le 15/08/2013 14:39, PICCORO McKAY Lenz a écrit : > From: Beno?t Minisini >> Le 13/08/2013 18:54, PICCORO McKAY Lenz a ?crit : >>> i noted also that in debian there are two devel packages from curl: >>> >>> libcurl4-gnutls-dev >>> libcurl4-openssl-dev >>> > 1) agains what flavor must be complied g

Re: [Gambas-user] Gambas-user Digest, Vol 87, Issue 24

2013-08-15 Thread Benoît Minisini
Le 15/08/2013 15:30, Benoît Minisini a écrit : > Le 15/08/2013 14:39, PICCORO McKAY Lenz a écrit : >> From: Beno?t Minisini >>> Le 13/08/2013 18:54, PICCORO McKAY Lenz a ?crit : i noted also that in debian there are two devel packages from curl: libcurl4-gnutls-dev libcurl4-ope

Re: [Gambas-user] Feature request: Use key- (and index-)accessor in a With clause

2013-08-15 Thread Benoît Minisini
Le 13/08/2013 01:31, Benoît Minisini a écrit : > Le 11/08/2013 13:33, Tobias Boege a écrit : >> Hi Benoit, >> >> what bothers me from time to time is that With is *so* handy but can't be >> used to access Array or Collection elements like: >> >> With hCollection ' or hArray >>Print ["key"] ' o

Re: [Gambas-user] Feature request: Use key- (and index-)accessor in a With clause

2013-08-15 Thread Tobias Boege
On Thu, 15 Aug 2013, Beno?t Minisini wrote: > Le 13/08/2013 01:31, Beno?t Minisini a ?crit : > > Le 11/08/2013 13:33, Tobias Boege a ?crit : > >> Hi Benoit, > >> > >> what bothers me from time to time is that With is *so* handy but can't be > >> used to access Array or Collection elements like: > >

Re: [Gambas-user] Feature request: Use key- (and index-)accessor in a With clause

2013-08-15 Thread Benoît Minisini
Le 15/08/2013 16:32, Tobias Boege a écrit : >> This is implemented in revision #5797: >> >> Dim aStr As New String[2] >> With aStr >> .[0] = "a" >> .[1] = "b" >> Print .[0];; .[1] >> End With >> >> Enjoy! > > Nice! Works also with Collection-like objects. The only thing I noticed was >

Re: [Gambas-user] How to share one datasource across two forms?

2013-08-15 Thread Benoît Minisini
Le 11/08/2013 21:27, Marty a écrit : > Hello, > > First let me say thank you to all those who have answered my past posts. > > As I get deeper into programming databases with Gambas, more questions > come out. I have two forms which show data from the same table. The data > is split up so that the

Re: [Gambas-user] Feature request: Use key- (and index-)accessor in a With clause

2013-08-15 Thread Tobias Boege
On Thu, 15 Aug 2013, Beno?t Minisini wrote: > Le 15/08/2013 16:32, Tobias Boege a ?crit : > >> This is implemented in revision #5797: > >> > >> Dim aStr As New String[2] > >> With aStr > >> .[0] = "a" > >> .[1] = "b" > >> Print .[0];; .[1] > >> End With > >> > >> Enjoy! > > > > Nice! Wo