[Gambas-user] Webbrowser without gb.qt4??

2014-06-09 Thread Wolfgang, dl7nb
Hello, To display a html-file I would need the webbrowser from qb.qt4.webkit. That would be no problem BUT: My program grew of many month and is based on qb.gui (As it was a default when I started it) If I drop gb.gui to use gb.qt4.webkit (and gb.qt4)I get different looking forms and my

Re: [Gambas-user] Webbrowser without gb.qt4??

2014-06-09 Thread B Bruen
On Mon, 09 Jun 2014 10:04:12 +0200 Wolfgang, dl7nb dl...@gmx.de wrote: Hello, To display a html-file I would need the webbrowser from qb.qt4.webkit. That would be no problem BUT: My program grew of many month and is based on qb.gui (As it was a default when I started it) If I drop

Re: [Gambas-user] Webbrowser without gb.qt4??

2014-06-09 Thread Tobias Boege
On Mon, 09 Jun 2014, B Bruen wrote: On Mon, 09 Jun 2014 10:04:12 +0200 Wolfgang, dl7nb dl...@gmx.de wrote: Hello, To display a html-file I would need the webbrowser from qb.qt4.webkit. That would be no problem BUT: My program grew of many month and is based on qb.gui (As it was

Re: [Gambas-user] Webbrowser without gb.qt4??

2014-06-09 Thread Wolfgang, dl7nb
Am 09.06.2014 12:08, schrieb Tobias Boege: On Mon, 09 Jun 2014, B Bruen wrote: On Mon, 09 Jun 2014 10:04:12 +0200 Wolfgang, dl7nb dl...@gmx.de wrote: Hello, To display a html-file I would need the webbrowser from qb.qt4.webkit. That would be no problem BUT: My program grew of many month

Re: [Gambas-user] Webbrowser without gb.qt4??

2014-06-09 Thread gian
Hello Wolfang, I do not have answers on the specific problem. I guess you used gb.gui in Linux with GTK. I use Ubuntu 14:04 and I have studied the problem in my own way GTK vs QT. You can remedy with a few small tricks, some steps in these simple sample applications. I recommend to

Re: [Gambas-user] Webbrowser without gb.qt4??

2014-06-09 Thread Benoît Minisini
Le 09/06/2014 10:04, Wolfgang, dl7nb a écrit : Hello, To display a html-file I would need the webbrowser from qb.qt4.webkit. That would be no problem BUT: My program grew of many month and is based on qb.gui (As it was a default when I started it) If I drop gb.gui to use gb.qt4.webkit

Re: [Gambas-user] Webbrowser without gb.qt4??

2014-06-09 Thread Benoît Minisini
Le 09/06/2014 15:35, Benoît Minisini a écrit : Le 09/06/2014 10:04, Wolfgang, dl7nb a écrit : Hello, To display a html-file I would need the webbrowser from qb.qt4.webkit. That would be no problem BUT: My program grew of many month and is based on qb.gui (As it was a default when I started

Re: [Gambas-user] Webbrowser without gb.qt4??

2014-06-09 Thread gian
I'm sorry I do not understand how to do it. If you start with a gb.gui graphical program, after you can no longer change it. To change it in gb.qt (or gb. gtk) you have to start all over again. That's all right? Ciao gianluigi Il 09/06/2014 10:04, Wolfgang, dl7nb ha scritto: If I drop

Re: [Gambas-user] Webbrowser without gb.qt4??

2014-06-09 Thread Tobias Boege
On Mon, 09 Jun 2014, gian wrote: I'm sorry I do not understand how to do it. If you start with a gb.gui graphical program, after you can no longer change it. To change it in gb.qt (or gb. gtk) you have to start all over again. That's all right? No. Go to Project - Properties -

Re: [Gambas-user] Webbrowser without gb.qt4??

2014-06-09 Thread gian
Tobias, thanks you for your answer, At the beginning (only 3 months ago:-) ) I tried it and gave me different results. So I was convinced that was the right way. Ciao gianluigi Il 09/06/2014 17:24, Tobias Boege ha scritto: On Mon, 09 Jun 2014, gian wrote: I'm sorry I do not understand

[Gambas-user] X11Systray

2014-06-09 Thread herberth guzman
Hi Benoit I want to thank all the support you have given me to work with MyPanel and Desktop Innova. I apologize for my bad English and for not having enough knowledge minimum and ask questions that maybe den laugh, it's because I did not know how. The important thing is that I learned to do it.

Re: [Gambas-user] X11Systray

2014-06-09 Thread Benoît Minisini
Le 09/06/2014 18:42, herberth guzman a écrit : Hi Benoit I want to thank all the support you have given me to work with MyPanel and Desktop Innova. I apologize for my bad English and for not having enough knowledge minimum and ask questions that maybe den laugh, it's because I did not know

[Gambas-user] Form does not update during a debug session

2014-06-09 Thread Orionis
I'm experimenting this issue: A form called 'modList' contains a TableView and some other simple controls like labels. NOTE: this is a modal window. A pubblic sub 'Update' is called inside the module with: Public Sub DoUpdate_Click() Update End The Update procedure must be debugged for some

Re: [Gambas-user] Form does not update during a debug session

2014-06-09 Thread Tobias Boege
On Mon, 09 Jun 2014, Orionis wrote: I'm experimenting this issue: A form called 'modList' contains a TableView and some other simple controls like labels. NOTE: this is a modal window. A pubblic sub 'Update' is called inside the module with: Public Sub DoUpdate_Click() Update End

Re: [Gambas-user] Webbrowser without gb.qt4??

2014-06-09 Thread Wolfgang
Benoît Minisini gam...@users.sourceforge.net schrieb: Le 09/06/2014 15:35, Benoît Minisini a écrit : Le 09/06/2014 10:04, Wolfgang, dl7nb a écrit : Hello, To display a html-file I would need the webbrowser from qb.qt4.webkit. That would be no problem BUT: My program grew of many month

Re: [Gambas-user] X11Systray

2014-06-09 Thread Benoît Minisini
Le 09/06/2014 19:01, Benoît Minisini a écrit : 2 - I need a form (form_launcher.opacity = 80)semi-transparent , but the controls i need opacity =100, visible. As I can do?. It's possible with Qt4, but it is not implemented in gb.qt4. I need a way to do that too with GTK+. Regards, OK,

[Gambas-user] Raising events during the constructor method

2014-06-09 Thread B Bruen
I don't know whether I have only just noticed this, but is it possible to raise events during the constructor? Main class: Dim myThing as Thing myThing = new Thing as Something Public Sub Something_Hello() Debug End Thing class Event Hello() Public Sub _New() Raise

Re: [Gambas-user] Webbrowser without gb.qt4??

2014-06-09 Thread Wolfgang
gian bago...@libero.it schrieb: Wolfang, I would like to reiterate the my concept, if you have an application created with gb.gui in a Linux using GTK (eg Ubuntu) and that well works , I think you should change it with GB.GTK+ (Properties - Components, select gb.gtk and deselect gb.gui as