Re: [Gambas-user] SMTP Client errors - Sending Email

2013-08-20 Thread Rolf-Werner Eilert
Am 20.08.2013 20:00, schrieb Willy Raets: > On Tue, 2013-08-20 at 16:52 +0200, Rolf-Werner Eilert wrote: >> >> Am 20.08.2013 15:52, schrieb Marty: >>> God Morning All, >>> >>> I'm using gb.smpt to send email from a Gambas routine. The routine is: >>> >>> 12 Public Sub btnSend_Click() >>> 13 >>> 1

[Gambas-user] gb.SMTP Errors

2013-08-20 Thread Marty McGlensey
Thanks, Willy. The change from mime.Text to "text/Plain cured the Mime error. I still get the authentication error: error 535 - 5.7.8. I've tried to send emails to accounts located on the same server. No mail sent. Tried setting gb.smpt to the same parameters as my wife's account. Her account works

Re: [Gambas-user] sebikul (gambas-daily) raring ppa broken

2013-08-20 Thread Kevin Fishburne
On 08/20/2013 05:13 PM, Sebastian Kulesz wrote: > Hi! Another user already reported this bug on the Quantal builds. It's a > really stupid mistake i left from an update i made last week. I will fix it > as soon as i get home, though i'm not sure if i will be able to do it > tonight. If it's urgent,

Re: [Gambas-user] sebikul (gambas-daily) raring ppa broken

2013-08-20 Thread Sebastian Kulesz
Hi! Another user already reported this bug on the Quantal builds. It's a really stupid mistake i left from an update i made last week. I will fix it as soon as i get home, though i'm not sure if i will be able to do it tonight. If it's urgent, you can temporarily enable Kendek's ppa or downgrade th

[Gambas-user] how to disable temporally key combinartion (alt+F4 etc)

2013-08-20 Thread PICCORO McKAY Lenz
i want to disable some key combination, specially alt+F4 and crtl+alt+backspace under X11 how could be do? and also how to got focus, put in undecorate and then set always_on_top ! for plus jejeje Lenz McKAY Gerardo (PICCORO) http://qgqlochekone.blogspot.com --

[Gambas-user] sebikul (gambas-daily) raring ppa broken

2013-08-20 Thread Kevin Fishburne
I've tested it on two machines just now and I get the following error: /var/cache/apt/archives/gambas3-gb-eval-highlight_3.4.99-1+svn4657-build41~raring1_all.deb trying to overwrite '/usr/share/gambas3/info/gb.eval.highlight.info', which is also in package gambas3-runtime 3.4.99-1+svn4657-build4

Re: [Gambas-user] SMTP Client errors - Sending Email

2013-08-20 Thread Willy Raets
On Tue, 2013-08-20 at 16:52 +0200, Rolf-Werner Eilert wrote: > > Am 20.08.2013 15:52, schrieb Marty: > > God Morning All, > > > > I'm using gb.smpt to send email from a Gambas routine. The routine is: > > > > 12 Public Sub btnSend_Click() > > 13 > > 14 Dim t$ As String > > 15 Dim email As Ne

Re: [Gambas-user] SMTP Client errors - Sending Email

2013-08-20 Thread Rolf-Werner Eilert
Am 20.08.2013 15:52, schrieb Marty: > God Morning All, > > I'm using gb.smpt to send email from a Gambas routine. The routine is: > > 12 Public Sub btnSend_Click() > 13 > 14 Dim t$ As String > 15 Dim email As New SmtpClient > 16 > 17 t$ = File.Load("/home/marty/Test.txt") > 18 > 19

[Gambas-user] SMTP Client errors - Sending Email

2013-08-20 Thread Marty
God Morning All, I'm using gb.smpt to send email from a Gambas routine. The routine is: 12 Public Sub btnSend_Click() 13 14 Dim t$ As String 15 Dim email As New SmtpClient 16 17 t$ = File.Load("/home/marty/Test.txt") 18 19 With email 20.Add("Hello") 21.Add(t$, Mime

Re: [Gambas-user] How to bring forward Gambas server pages? (gbw3 related files who to expose in http)

2013-08-20 Thread PICCORO McKAY Lenz
El 19/08/13 20:28, Beno?t Minisini escribi?: > - When I have time (after my holidays in two weeks?) I will write an > example project of how to make a web site with Gambas. Surely some > sort of little wiki or blog. Regards, Benoit i urgency need those examples.. due now my project client are on p

Re: [Gambas-user] Cairo: coordinates

2013-08-20 Thread Rolf-Werner Eilert
Am 20.08.2013 09:28, schrieb Rolf-Werner Eilert: > What confused me a bit when using Cairo was the coordinates system. > > Initiating the page with width = 210 mm and height = 297 mm, I would > expect to be able to center a string of text with > >Cairo.MoveTo((210 / 2) - (Cairo.TextExtents("H

[Gambas-user] Cairo: coordinates

2013-08-20 Thread Rolf-Werner Eilert
What confused me a bit when using Cairo was the coordinates system. Initiating the page with width = 210 mm and height = 297 mm, I would expect to be able to center a string of text with Cairo.MoveTo((210 / 2) - (Cairo.TextExtents("Hello world").Width / 2), 40) for example (in practice, I wou