Re: [Gambas-user] Compiling Gambas3

2009-07-23 Thread Benoît Minisini
> Hi, > I tried to compile gambas3 after svn up to night, but got this message > during make: CDial_moc.cpp:14:2: error: #error "This file was generated > using the moc from 4.4.3. It" CDial_moc.cpp:15:2: error: #error "cannot be > used with the include files from this version of Qt." > CDial_moc.c

[Gambas-user] Compiling Gambas3

2009-07-23 Thread Peter Landgren
Hi, I tried to compile gambas3 after svn up to night, but got this message during make: CDial_moc.cpp:14:2: error: #error "This file was generated using the moc from 4.4.3. It" CDial_moc.cpp:15:2: error: #error "cannot be used with the include files from this version of Qt.

Re: [Gambas-user] Cannot compile

2009-07-23 Thread Ron_1st
On Thursday 23 July 2009, craf wrote: > -Mensaje original- > De: Fred Ellis > Reply-to: mailing list for gambas users > > Para: gambas-user@lists.sourceforge.net > Asunto: [Gambas-user] Cannot compile > Fecha: 23 Jul 2009 14:30:47 - > > > > This is my first post here, and I'm new t

Re: [Gambas-user] break long lines

2009-07-23 Thread Stephen Bungay
Benoît Minisini wrote: >>For String assignments you can put an & at the end of it... >> >> String = "ABCD " & >> "1234" >> >> Steve. >> >> Jean-Yves F. Barbier wrote: >>> Hi, >>> >>> Is there a special character (such as \ under bash) to break a very long >>> line? >>> >>> JY > > The

Re: [Gambas-user] Cannot compile

2009-07-23 Thread craf
-Mensaje original- De: Fred Ellis Reply-to: mailing list for gambas users Para: gambas-user@lists.sourceforge.net Asunto: [Gambas-user] Cannot compile Fecha: 23 Jul 2009 14:30:47 - This is my first post here, and I'm new to programming. I saw Gambas and thought I'd investigate a

Re: [Gambas-user] listbox display selected item

2009-07-23 Thread Stephen Bungay
Good work-around Dimitris. Dimitris Anogiatis wrote: > JY, I think I got it working the way you want it... > > try my example with a new project with a listview and a timer. Set the timer > for 10 miliseconds and enable it > > and paste this code in the class > >

Re: [Gambas-user] Cannot compile

2009-07-23 Thread M. Cs.
If want to experimenting with Gambas examples, you should open them, and then make a Save As... with them, and you will have them as your own projects, and of course, they'll become writable. This is the normal way of behaviour, so don't worry! --

[Gambas-user] Reading email

2009-07-23 Thread Jarkko Härmä
Hello Is there any way of reading email from Gambas ? Jarkko -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gamb

[Gambas-user] Cannot compile

2009-07-23 Thread Fred Ellis
This is my first post here, and I'm new to programming. I saw Gambas and thought I'd investigate as something to try to learn. I'm using Gambas2 on Linux (PCLOS 2009.1), however Ive hit trouble right at the start. If I load Gambas2 and open the installed examples, I'm told they are read

Re: [Gambas-user] A screenshot of Qt 4 WebKit inside Gambas 3

2009-07-23 Thread David Villalobos Cambronero
It looks simply GREAT I can't wait to try it, Come on Benoit, make the commit ASAP :-) Regards -- David - Original Message From: Benoît Minisini To: richard terry ; mailing list for gambas users Sent: Thursday, July 23, 2009 5:26:50 AM Subject: Re: [Gambas-user] A screensho

Re: [Gambas-user] A screenshot of Qt 4 WebKit inside Gambas 3

2009-07-23 Thread Benoît Minisini
> On Thu, 23 Jul 2009 11:40:57 am Benoît Minisini wrote: > > The quality of the jpeg is bad so that its size is lower than 256 Kb. > > This is the web application I develop for my job. > > > > Apparently there are some display bugs in WebKit when displaying > > underlined links... > > > > But hey,

Re: [Gambas-user] listbox display selected item [SOLVED]

2009-07-23 Thread Dimitris Anogiatis
You're welcome JY, I'm glad I could help :) Keep up the good work :) Regards Dimitris On Thu, Jul 23, 2009 at 4:25 AM, Jean-Yves F. Barbier <12u...@gmail.com>wrote: > Dimitris Anogiatis a écrit : > > True, I'm still working the kinks on it. It has to do with the code in > the > > timer event...

Re: [Gambas-user] listbox display selected item [SOLVED]

2009-07-23 Thread Jean-Yves F. Barbier
Dimitris Anogiatis a écrit : > True, I'm still working the kinks on it. It has to do with the code in the > timer event... and the way the coordinates are interpreted. > > I'll keep working on it and update the post when I get it perfect (or as > close to perfect as possible) I got it :) PUBLIC

Re: [Gambas-user] listbox display selected item

2009-07-23 Thread Dimitris Anogiatis
True, I'm still working the kinks on it. It has to do with the code in the timer event... and the way the coordinates are interpreted. I'll keep working on it and update the post when I get it perfect (or as close to perfect as possible) Regards, Dimitris On Thu, Jul 23, 2009 at 2:20 AM, Jean-Yv

Re: [Gambas-user] listbox display selected item

2009-07-23 Thread Jean-Yves F. Barbier
Jean-Yves F. Barbier a écrit : Stranger: if I changed the Mode property from Single to None, the not-selection (nevertheless displayed as a dotted line square) is working perfectly. -- -- ___

Re: [Gambas-user] listbox display selected item

2009-07-23 Thread Jean-Yves F. Barbier
Dimitris Anogiatis a écrit : > JY, I think I got it working the way you want it... YES, thanks Dimitri its working almost exactly as I wanted! I said almost because I've got a weird behaviour: my arrow cursor is pointing ~30° up-left and it is not the arrow's tip that trigger the change, it is it

Re: [Gambas-user] listbox display selected item

2009-07-23 Thread Dimitris Anogiatis
JY, I think I got it working the way you want it... try my example with a new project with a listview and a timer. Set the timer for 10 miliseconds and enable it and paste this code in the class -