Re: [Gambas-user] R: Richtext-Area alignment

2014-02-26 Thread Rolf-Werner Eilert
But what is .Format.Alignment good for if not for switching alignment? Am 27.02.2014 08:07, schrieb Fabien Bodard: > Yes ... because richtext have it's how embedded format instructions > > 2014-02-26 23:12 GMT+01:00 Ru Vuott : >> Hello, >> >> by using ".Format.Alignment" property it "seems" it onl

Re: [Gambas-user] R: Richtext-Area alignment

2014-02-26 Thread Rolf-Werner Eilert
Am 26.02.2014 23:12, schrieb Ru Vuott: > Hello, > > by using ".Format.Alignment" property it "seems" it only works in this way > > > Public Sub Form_Open() > > TextEdit1.RichText = "arma virumque cano" > > End > > > Public Sub Button1_Click() > >TextEdit1.Format.Alignment = Align.

Re: [Gambas-user] R: Richtext-Area alignment

2014-02-26 Thread Fabien Bodard
how-> own 2014-02-27 8:07 GMT+01:00 Fabien Bodard : > Yes ... because richtext have it's how embedded format instructions > > 2014-02-26 23:12 GMT+01:00 Ru Vuott : >> Hello, >> >> by using ".Format.Alignment" property it "seems" it only works in this >> way >> >> >> Public Sub Form_Open() >>

Re: [Gambas-user] R: Richtext-Area alignment

2014-02-26 Thread Fabien Bodard
Yes ... because richtext have it's how embedded format instructions 2014-02-26 23:12 GMT+01:00 Ru Vuott : > Hello, > > by using ".Format.Alignment" property it "seems" it only works in this way > > > Public Sub Form_Open() > >TextEdit1.RichText = "arma virumque cano" > > End > > > Public S

[Gambas-user] R: Richtext-Area alignment

2014-02-26 Thread Ru Vuott
Hello, by using ".Format.Alignment" property it "seems" it only works in this way Public Sub Form_Open() TextEdit1.RichText = "arma virumque cano" End Public Sub Button1_Click() TextEdit1.Format.Alignment = Align.Center ' but if in "Form_Open()" routine is set " ha scritto:

Re: [Gambas-user] Richtext-Area alignment

2014-02-26 Thread Ru Vuott
...I believe "TextEdit". vuott Mer 26/2/14, Jussi Lahtinen ha scritto: Oggetto: Re: [Gambas-user] Richtext-Area alignment A: "mailing list for gambas users" Data: Mercoledì 26 febbraio 2014, 21:28 I believe he means TextArea. Jussi On

Re: [Gambas-user] SMTP Component

2014-02-26 Thread Jesus
El 26/02/14 18:20, Nigel Verity escribió: > Hi > > I am planning to use the SMTP component in a new Gambas project. I am happy > with the basic functionality but the documentation states that if the "Host" > property is left blank the messages are sent to "localhost" instead of a > designated SM

Re: [Gambas-user] Richtext-Area alignment

2014-02-26 Thread Jussi Lahtinen
I believe he means TextArea. Jussi On Wed, Feb 26, 2014 at 9:37 PM, Fabien Bodard wrote: > What is richtext area ? > Le 26 févr. 2014 18:53, "Jussi Lahtinen" a > écrit > : > > > Just quickly from hat, but maybe you need call "txt.Refresh" also. > > > > Jussi > > > > > > On Wed, Feb 26, 2014 a

Re: [Gambas-user] Richtext-Area alignment

2014-02-26 Thread Fabien Bodard
What is richtext area ? Le 26 févr. 2014 18:53, "Jussi Lahtinen" a écrit : > Just quickly from hat, but maybe you need call "txt.Refresh" also. > > Jussi > > > On Wed, Feb 26, 2014 at 1:23 PM, Rolf-Werner Eilert < > eilert-sprac...@t-online.de> wrote: > > > For a Richtext-Area ("txt") I have a To

Re: [Gambas-user] Richtext-Area alignment

2014-02-26 Thread Jussi Lahtinen
Just quickly from hat, but maybe you need call "txt.Refresh" also. Jussi On Wed, Feb 26, 2014 at 1:23 PM, Rolf-Werner Eilert < eilert-sprac...@t-online.de> wrote: > For a Richtext-Area ("txt") I have a Toggle-Button for center alignment > ("btnZentriert") and try this: > > Public Sub btnZentrie

Re: [Gambas-user] SMTP Component

2014-02-26 Thread Caveat
Try looking in /var/mail/{your-user} You can, for example, install postfix in 'local only' mode... and mail will go to your local system. Kind regards, Caveat On 26/02/14 18:20, Nigel Verity wrote: > Hi > > I am planning to use the SMTP component in a new Gambas project. I am happy > with the

[Gambas-user] SMTP Component

2014-02-26 Thread Nigel Verity
Hi I am planning to use the SMTP component in a new Gambas project. I am happy with the basic functionality but the documentation states that if the "Host" property is left blank the messages are sent to "localhost" instead of a designated SMTP server. Does anybody know where on my local machi

Re: [Gambas-user] How do I access "Complex Repotr.pdf"?

2014-02-26 Thread Fabien Bodard
Well, to begin now, i think it will be better to install the svn version of Gambas. Simply because i've been working on the component continuously since one month now, and i have changed many little things, that will help a lot to understand how it work. For example, now a reportcontrol with no he

[Gambas-user] Richtext-Area alignment

2014-02-26 Thread Rolf-Werner Eilert
For a Richtext-Area ("txt") I have a Toggle-Button for center alignment ("btnZentriert") and try this: Public Sub btnZentriert_Click() If btnZentriert.Value = True Then txt.Format.Alignment = Align.Center End It doesn't have an effect, but I don't see how to do else. Please enlighten me :-