Re: [Gambas-user] Extern howto/tutorial

2010-08-24 Thread Doriano Blengino
Benoît Minisini ha scritto: >> Hi, >> >> I finally wrote the tutorial about using external declarations. >> > This is not HTML, but plain text. If you can make an HTML version of your > document, with formatted text, I will be able to add it to the wiki. > Mmm... this is an excerpt from th

Re: [Gambas-user] 'Public Enum' Question

2010-08-24 Thread Lord Quo
Sorry, I wrote a terrible begginer error. This is my "correct" code: Public Enum Automatic, Left, Center, Right, Fill, Justify, CenterAcrossSelection, Distributed, JustifyDistributed But Left and Right give me problems because they are reserved word. Can I use them in another form? In

Re: [Gambas-user] 'Public Enum' Question

2010-08-24 Thread François Gallo
Le mardi 24 août 2010 à 10:42 -0500, Lord Quo a écrit : > Sorry, I wrote a terrible begginer error. > >This is my "correct" code: > > Public Enum Automatic, Left, Center, Right, Fill, Justify, > CenterAcrossSelection, Distributed, JustifyDistributed > >But Left and Right give me problem

Re: [Gambas-user] 'Public Enum' Question

2010-08-24 Thread Lord Quo
Ok, ok, I discovered the answer. I need to put my variable between braces: Public Enum Automatic, {Left}, Center, {Right}, Fill, Justify, CenterAcrossSelection, Distributed, JustifyDistributed Thanks a lot. From: Lord Quo Sent: Tuesday, August 24, 2010 10:42 AM To: Gambas-user@lists.s

Re: [Gambas-user] 'Public Enum' Question

2010-08-24 Thread Lord Quo
Thanks! :-) -- From: "FrançoisGallo" Sent: Tuesday, August 24, 2010 10:49 AM To: "mailing list for gambas users" Subject: Re: [Gambas-user] 'Public Enum' Question > Yes you can by enclosing your variable name within { } . > > François. --

Re: [Gambas-user] Clipboard problem in Gambas

2010-08-24 Thread Jussi Lahtinen
I have noticed it with Ubuntu also. I use Parcellite clipboard manager, I'm not sure if it matters. That bug is rare and I have not figured out how to reproduce it. Jussi On Tue, Aug 24, 2010 at 00:51, richard terry wrote: > On Tuesday 24 August 2010 01:03:43 Benoît Minisini wrote: >> > 1. Tha

Re: [Gambas-user] Clipboard problem in Gambas

2010-08-24 Thread Charlie Reinl
Am Dienstag, den 24.08.2010, 19:22 +0300 schrieb Jussi Lahtinen: > I have noticed it with Ubuntu also. > I use Parcellite clipboard manager, I'm not sure if it matters. > That bug is rare and I have not figured out how to reproduce it. > > Jussi > > > > On Tue, Aug 24, 2010 at 00:51, richard te

Re: [Gambas-user] 'Public Enum' Question

2010-08-24 Thread François Gallo
No problem :) Le mardi 24 août 2010 à 11:19 -0500, Lord Quo a écrit : > Thanks! :-) > > -- > From: "FrançoisGallo" > Sent: Tuesday, August 24, 2010 10:49 AM > To: "mailing list for gambas users" > Subject: Re: [Gambas-user] 'Public Enum' Quest