[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 :-)

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

[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 machine

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 btnZentriert_Click()

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 jussi.lahti...@gmail.com 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

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 gambas...@gmail.com wrote: What is richtext area ? Le 26 févr. 2014 18:53, Jussi Lahtinen jussi.lahti...@gmail.com a écrit : Just quickly from hat, but maybe you need call txt.Refresh also. Jussi

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 SMTP

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 gambas...@gmail.com: Yes ... because richtext have it's how embedded format instructions 2014-02-26 23:12 GMT+01:00 Ru Vuott vu...@yahoo.it: Hello, by using .Format.Alignment property it seems it only works in this way Public Sub

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 = P align=rightarma virumque cano End Public Sub Button1_Click() TextEdit1.Format.Alignment = Align.Center