Re: [Gambas-user] Gridview row height question

2012-08-02 Thread Richard Terry
Fabien Bodard wrote: All my gambas versions are 3.2 + (whatever the latest svn is) richard > 2012/8/1 richard > > >> I seem to remember a posting in recent times about how to set the row >> height to automatically adjust to the height of wrapped text >> >> ?possible >> >> thanks in anticipat

Re: [Gambas-user] label multiline property

2012-08-02 Thread RICHARD WALKER
Hi Abbat, I have just checked the two provided label types; TextLabel and Label They behave slightly differently in providing multi-line text (which is possible for both). If you enter multi-line text using the Properties form in the IDE in Label1.Text then the lines will appear as entered in the

[Gambas-user] label multiline property

2012-08-02 Thread abbat
Does label has some feature like multi-line? -- View this message in context: http://old.nabble.com/label-multiline-property-tp34248091p34248091.html Sent from the gambas-user mailing list archive at Nabble.com. -- L

[Gambas-user] Failed to find gb.form component

2012-08-02 Thread LK
Hello! When compiling my program the command 'configure' prints the error: "configure: error: Failed to find gb.form component.". All libraries that I had in gambas folder, copied to /usr/lib/gambas2. The system is Tiny Core. Best regards, LeszeKK ---

[Gambas-user] R: DesktopWindow.FullScreen.....

2012-08-02 Thread Ru Vuott
...No problem, I have solved. --- Gio 2/8/12, Ru Vuott ha scritto: > Da: Ru Vuott > Oggetto: [Gambas-user] DesktopWindow.FullScreen. > A: Gambas-user@lists.sourceforge.net > Data: Giovedì 2 agosto 2012, 17:11 > Hello, > > did someone use: DesktopWindow.FullScreen ? > > How do I have t

[Gambas-user] DesktopWindow.FullScreen.....

2012-08-02 Thread Ru Vuott
Hello, did someone use: DesktopWindow.FullScreen ? How do I have to use it exactly ? Best regards Vuo -- Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat

Re: [Gambas-user] Declaring external C libraries

2012-08-02 Thread wally
On Thursday 02 August 2012 15:11:03 Christer Johansson wrote: > > Of course i've seen your recent posting, but i do not understand the > > line, but i'm do not know apt-get in details. > > > > sudo dpkg -i gambas2_2.24.0-1_armel.deb ; sudo apt-get -f install > > > > we are talking about gambas3.

Re: [Gambas-user] Declaring external C libraries

2012-08-02 Thread Christer Johansson
> Of course i've seen your recent posting, but i do not understand the > line, but i'm do not know apt-get in details. > > sudo dpkg -i gambas2_2.24.0-1_armel.deb ; sudo apt-get -f install > > we are talking about gambas3. tomtors install example was for Gambas2. Just replace the name of th

Re: [Gambas-user] Declaring external C libraries

2012-08-02 Thread wally
On Thursday 02 August 2012 14:48:14 Christer Johansson wrote: > Hi Wally, > > > your posting is very interesting, thank you > > > > I use GB3 on Opensuse so far and now i'm learning for RaspBerry PI. > > > > 1st step was to make a Virtual machine of debian. > > 2nd is to get Gmabs3 working on it

Re: [Gambas-user] Declaring external C libraries

2012-08-02 Thread Christer Johansson
Hi Wally, > your posting is very interesting, thank you > > I use GB3 on Opensuse so far and now i'm learning for RaspBerry PI. > > 1st step was to make a Virtual machine of debian. > 2nd is to get Gmabs3 working on it ... > but this failed. > > Your information sounds as you successfully run

Re: [Gambas-user] Raspberry Pi

2012-08-02 Thread Christer Johansson
> -Original Message- > From: wally [mailto:wa...@voosen.eu] > Sent: Thursday, August 02, 2012 2:16 PM > To: Mike Crean; mailing list for gambas users > Subject: Re: [Gambas-user] Raspberry Pi > > > On Thursday 02 August 2012 03:34:42 Mike Crean wrote: > > Well my Rpi has turned up and it

Re: [Gambas-user] Raspberry Pi

2012-08-02 Thread wally
On Thursday 02 August 2012 03:34:42 Mike Crean wrote: > Well my Rpi has turned up and it works very well with Raspbian (Debian > wheezy) on it. I am happy to say it performs much faster than I expected. > I have down loaded & install Gambas3 with the Rpi. > > sudo apt-get update > sudo apt-get in

[Gambas-user] Raspberry Pi

2012-08-02 Thread Mike Crean
Well my Rpi has turned up and it works very well with Raspbian (Debian wheezy) on it. I am happy to say it performs much faster than I expected. I have down loaded & install Gambas3 with the Rpi. sudo apt-get update sudo apt-get install gambas3 sudo gambas3 All seem to install OK and no errors

Re: [Gambas-user] Object matrix problem

2012-08-02 Thread Fabien Bodard
2012/8/2 fulippo_fuli...@tiscali.it > Hi All > i came from VB6 world , and i apreciate Gambas for linux > > I try > to create a program , but i have problem on object matrix > In vb i can > do this : text1(1).text ,text1(2).text,text1(3).text.. text1(n). > text , can i control textbox in this

Re: [Gambas-user] Gridview row height question

2012-08-02 Thread richard
On 02/08/12 17:58, Fabien Bodard wrote: > 2012/8/2 Richard Terry > >> Fabien Bodard wrote: >> >>> 2012/8/1 richard >>> >>> >>> I seem to remember a posting in recent times about how to set the row height to automatically adjust to the height of wrapped text ?possible

[Gambas-user] Object matrix problem

2012-08-02 Thread fulippo_fuli...@tiscali.it
Hi All i came from VB6 world , and i apreciate Gambas for linux I try to create a program , but i have problem on object matrix In vb i can do this : text1(1).text ,text1(2).text,text1(3).text.. text1(n). text , can i control textbox in this way on Gambas , there is similar solution ? Than

Re: [Gambas-user] _compare() Type mismatch: wanted Date, Number or String

2012-08-02 Thread Fabien Bodard
the _compare event is for the sort function in arrays http://gambasdoc.org/help/lang/special/compare?en&v3 i think my way is the more simple -- Live Security Virtual Conference Exclusive live event will cover all the ways

Re: [Gambas-user] _compare() Type mismatch: wanted Date, Number or String

2012-08-02 Thread Fabien Bodard
Just add a Value to each card if hplaingCard.Value > hPlayingCard2.Value 'To declare them (class CCard) What is a card ? Public Id as integer Public Value as integer Public {Picture} as Picture So to load them (32 card) Private AllCards as CCard[] public sub Main dim hCard as CCard dim

Re: [Gambas-user] Holidays

2012-08-02 Thread Fabien Bodard
2012/8/1 Christer Johansson > > > I leave Paris, my computer and Internet for a week. I will be back on > > August, 6th. > > > > So you have six days to fill my mailbox with hundreds of bug reports. > > Hope you enjoy your holiday! > > /CJ > > I think hollidays, are with no internet, no phone, no

Re: [Gambas-user] Gridview row height question

2012-08-02 Thread Fabien Bodard
2012/8/2 Richard Terry > Fabien Bodard wrote: > >> 2012/8/1 richard >> >> >> >>> I seem to remember a posting in recent times about how to set the row >>> height to automatically adjust to the height of wrapped text >>> >>> ?possible >>> >>> thanks in anticipation# >>> >>> Richard >>> >>> >>> >>