[Gambas-user] Issue 599 in gambas: deb package of component: icons not found

2015-01-28 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 599 by chr4...@googlemail.com: deb package of component: icons not found https://code.google.com/p/gambas/issues/detail?id=599 1) Describe the problem. If component has

Re: [Gambas-user] Explictly sized array parameters in method signatures?

2015-01-28 Thread Tobias Boege
On Wed, 28 Jan 2015, adamn...@gmail.com wrote: > Hmm, I've never tried this before. > > Suppose a function GetCurrent(DateRange as Date[]), now intuitively > DateRange is an array of 2 dates. No-one would be silly enough to pass an > array with more than two elements would they? My cynical nat

[Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Gian
Hello all, I noticed one thing, if I write UCase $ ("perché") I get PERCHé If I write Print.Ucase ("perché") I get PERCHÉ It is correct? ("perché" is "why" or "because" in italian language) Regards Gianluigi -- Dive into t

Re: [Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Jussi Lahtinen
You mean String.Ucase() ? The other function is for unicode and the other is only for ascii. Jussi On Wed, Jan 28, 2015 at 8:25 PM, Gian wrote: > Hello all, > I noticed one thing, if I write UCase $ ("perché") I get PERCHé > If I write Print.Ucase ("perché") I get PERCHÉ > It is correct? > ("p

Re: [Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Gian
Il 28/01/2015 19:25, Gian ha scritto: > Hello all, > I noticed one thing, if I write UCase $ ("perché") I get PERCHé > If I write Print.Ucase ("perché") I get PERCHÉ > It is correct? > ("perché" is "why" or "because" in italian language) > Regards > Gianluigi > > ---

Re: [Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Gian
Il 28/01/2015 19:32, Jussi Lahtinen ha scritto: > You mean String.Ucase() ? > The other function is for unicode and the other is only for ascii. > > > Jussi > > On Wed, Jan 28, 2015 at 8:25 PM, Gian wrote: > >> Hello all, >> I noticed one thing, if I write UCase $ ("perché") I get PERCHé >> If I w

Re: [Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Lewis Balentine
"é" is not an ASCII character. Reference: http://gambaswiki.org/wiki/lang/ucase This function does not work with UTF-8 strings. UseString.UCase instead. Word = "perché" Print Word, UCase(Word), String.UCase(Word) Word = UCase(Word) Print Word '---

Re: [Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Gian
Il 28/01/2015 19:48, Lewis Balentine ha scritto: > "é" is not an ASCII character. > > Reference: http://gambaswiki.org/wiki/lang/ucase > This function does not work with UTF-8 strings. UseString.UCase > instead. > > Word = "perché" > Print Word, UCas

Re: [Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Lewis Balentine
For a real challenge try 5 bit Baudot :-) -- Dive into the World of Parallel Programming. The Go Parallel Website, sponsored by Intel and developed in partnership with Slashdot Media, is your hub for all things parallel s

Re: [Gambas-user] Problem with UCase$ ?

2015-01-28 Thread Gian
Il 28/01/2015 20:16, Lewis Balentine ha scritto: > For a real challenge try 5 bit Baudot :-) > > > -- > Dive into the World of Parallel Programming. The Go Parallel Website, > sponsored by Intel and developed in partnership