Re: [Gambas-user] what kind of application developer Gambas

2010-03-23 Thread Ricardo Díaz Martín
You can make almost all you want, but for me is really nice as MySQL frontend. Regards, Ricardo Díaz 2010/3/24 Tomas Rodriguez > Hi > I am new in gambas I need to know what kind of application I can developer > in this programming language? > > thanks > Tomas > > > > > -

Re: [Gambas-user] Cannot reduce windows size to modal windows

2010-03-23 Thread Benoît Minisini
> Ok, then it is a feature, thank you. > I won't use this workaround, in fact I've never used it, I just discovered > it before this email. > > I can read this: > "If a resizable window is shown in modal mode, then its initial size > becomes automatically its minimum size." > here: > http://gambas

[Gambas-user] what kind of application developer Gambas

2010-03-23 Thread Tomas Rodriguez
Hi I am new in gambas I need to know what kind of application I can developer in this programming language? thanks Tomas -- Download Intel® Parallel Studio Eval Try the new software tools for yourself. Speed compiling

Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread Steven James Drinnan
As a work around use sendmail as the mail transport. Just ensure the service is running. And as it is usually installed by default on a lot of Linux distributions. This is the case for the Desktop version of Fedora. Concerns to be safe do not enable the port 25 on your firewall. (if enabled you c

Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread Olivier Cruilles
Bonsoir Benoit, Peut être cela t'aidera: http://www.etpan.org/libetpan/ http://libsmtp.sourceforge.net/ http://www.gnu.org/software/gss/ Olivier Cruilles Mail: linu...@club-internet.fr Le 23 mars 2010 à 22:28, Benoît Minisini a écrit : >> -Mensaje origin

Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread craf
-Mensaje original- De: Benoît Minisini Reply-to: mailing list for gambas users Para: mailing list for gambas users Asunto: Re: [Gambas-user] Send mail with smtp Fecha: Tue, 23 Mar 2010 22:28:48 +0100 > -Mensaje original- > De: Toni > Reply-to: ar...@tginet.com, mailing list fo

Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread Benoît Minisini
> -Mensaje original- > De: Toni > Reply-to: ar...@tginet.com, mailing list for gambas users > > Para: mailing list for gambas users > Asunto: Re: [Gambas-user] Send mail with smtp > Fecha: Tue, 23 Mar 2010 21:26:01 +0100 (Hora estndar romance) > > < < < plain-text > < data > < from an >

Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread craf
-Mensaje original- De: Toni Reply-to: ar...@tginet.com, mailing list for gambas users Para: mailing list for gambas users Asunto: Re: [Gambas-user] Send mail with smtp Fecha: Tue, 23 Mar 2010 21:26:01 +0100 (Hora estndar romance)

Re: [Gambas-user] Send mail with smtp

2010-03-23 Thread Toni
Hello, Once, I came across an #575 smtp error, and it was due to the server requiring a secure smtp connection to the port 587 instead to a plain-text connection to the port 25... So, are you sure that you can use the data provided to gambas gb.net.smtp component to properly send messages from an e

[Gambas-user] Send mail with smtp

2010-03-23 Thread craf
Hi. I'm trying to send an email from my computer, using the gb.net.smtp component. The code that uses it: ' Gambas module file PUBLIC SUB Main() DIM mail AS NEW SmtpClient mail.To.Add("u...@recipient.net") mail.Subject = "Test Mail" mail.From = "u...@sender.com" mail.Host = "mail.servidor.co