Re: [Gambas-user] can't call a procedure from a different module

2009-12-02 Thread kevinfishburne
[SOLVED] Kadaitcha Man wrote: 2009/12/2 kevinfishburne kevinfishbu...@eightvirtues.com: (2) Module Server then calls the procedure Init contained within module Net (Net.Init). Net is reserved for the Net class of constants in gambas. Rename the module.

[Gambas-user] Ok, what have I done?

2009-12-02 Thread Kadaitcha Man
This happens in both Gambas 2.18 and 3. When I drag a hSplit or a vSplit onto a form, I can't add any controls to either the left or the right panel because the splitter is not functioning. Anyone got any suggestions? attachment:

Re: [Gambas-user] Serial Port Change Events Not Working after Upgrade to Karmic

2009-12-02 Thread Tony
Hi Benoit, I have muddled my way through the subversion bit, hopefully correctly and compiled the 2454 version. When opening my application I get the error message The program has stopped unexpectedly raising signal #11 with the CPU at 100%. If I try to open the wrong ttyUSBx, the

Re: [Gambas-user] SYSTEM NOTIFICATIONS

2009-12-02 Thread Ron
On Ubuntu 9.10 this tool is not installed by default. $ notify-send The program 'notify-send' is currently not installed. You can install it by typing: sudo apt-get install libnotify-bin notify-send: command not found Maybe they use another one. Regards, Ron_2nd. Thanks Benoit. There is a

Re: [Gambas-user] Serial Port Change Events Not Working after Upgrade to Karmic

2009-12-02 Thread Charlie Reinl
Am Mittwoch, den 02.12.2009, 20:25 +1100 schrieb Tony: Hi Benoit, I have muddled my way through the subversion bit, hopefully correctly and compiled the 2454 version. When opening my application I get the error message The program has stopped unexpectedly raising signal #11 with the

[Gambas-user] textedit html behaviour

2009-12-02 Thread Ron
Hi, I wanted to use a textEdit window to be able to do things like bold/colored text etc for individual lines. I noticed this behavoir: sText = bText/b FLogfiles.txtMainLog.Text = sText Displays: Text sText = bText/b FLogfiles.txtMainLog.Insert(sText)

Re: [Gambas-user] drawingarea limits

2009-12-02 Thread Benoît Minisini
hi i cant set drawing area width(or drawing area height) bigger then 32767 . how can i set bigger then 32767. I'm afraid that on X-Window width and height are 16-bits integer. So that limit... -- Benoît Minisini

Re: [Gambas-user] Ok, what have I done?

2009-12-02 Thread Benoît Minisini
This happens in both Gambas 2.18 and 3. When I drag a hSplit or a vSplit onto a form, I can't add any controls to either the left or the right panel because the splitter is not functioning. Anyone got any suggestions? I'm not sure to really understand what you are talking about

[Gambas-user] Qt Slider orientation

2009-12-02 Thread Ron
Hi, why is it not possible (so it seems to me) to set a sliders orientation to vertical in Gambas? http://doc.qt.nokia.com/3.3/qslider.html#orientation-prop Gambas 2.18.x gb.qt Ubuntu 9.10 Regards, Ron_2nd. -- Join

Re: [Gambas-user] Serial Port Change Events Not Working after Upgrade to Karmic

2009-12-02 Thread Ron
Benoît Minisini wrote: Am Mittwoch, den 02.12.2009, 20:25 +1100 schrieb Tony: Hi Benoit, I have muddled my way through the subversion bit, hopefully correctly and compiled the 2454 version. When opening my application I get the error message The program has stopped unexpectedly

[Gambas-user] Audio Cards Selection

2009-12-02 Thread Pino Zollo
Hi, I have two audio cards on the computer. Is there a way to record sound from one and send other sound to the other ? I.E. How to select the card ? Regards PinoZP4KFX GG15lv -- Key ID: 0xF6768208 Key fingerprint = B16D 0A7C 5B29 A334 CE6A 71F6 EAF8 3D88 F676 8208 Key server:

Re: [Gambas-user] Serial Port Change Events Not Working after Upgrade to Karmic

2009-12-02 Thread Ron
Ron wrote: Benoît Minisini wrote: Am Mittwoch, den 02.12.2009, 20:25 +1100 schrieb Tony: Hi Benoit, I have muddled my way through the subversion bit, hopefully correctly and compiled the 2454 version. When opening my application I get the error message The program has stopped

Re: [Gambas-user] Qt Slider orientation

2009-12-02 Thread Ron_1st
On Wednesday 02 December 2009, Ron wrote: Hi, why is it not possible (so it seems to me) to set a sliders orientation to vertical in Gambas? http://doc.qt.nokia.com/3.3/qslider.html#orientation-prop Gambas 2.18.x gb.qt Ubuntu 9.10 Regards, Ron_2nd.

Re: [Gambas-user] textedit html behaviour

2009-12-02 Thread Benoît Minisini
Hi, I wanted to use a textEdit window to be able to do things like bold/colored text etc for individual lines. I noticed this behavoir: sText = bText/b FLogfiles.txtMainLog.Text = sText Displays: Text sText = bText/b

Re: [Gambas-user] drawingarea limits

2009-12-02 Thread Doriano Blengino
abdurrahman ulusoy ha scritto: hi i cant set drawing area width(or drawing area height) bigger then 32767 . how can i set bigger then 32767. It would be a very very bad idea to do that. An area of 32767x26000 pixels would take 2.5 gigabyte of ram (yes, I said 2555 megabyte), counting 3

Re: [Gambas-user] can't call a procedure from a different module

2009-12-02 Thread Benoît Minisini
[SOLVED] Kadaitcha Man wrote: 2009/12/2 kevinfishburne kevinfishbu...@eightvirtues.com: (2) Module Server then calls the procedure Init contained within module Net (Net.Init). Net is reserved for the Net class of constants in gambas. Rename the module.

Re: [Gambas-user] GRIDVIEW: SCROLL DOUBLE CLICK

2009-12-02 Thread Ricardo Díaz Martín
Have you received the example? 2009/11/30 Ricardo Díaz Martín oceanosoftlapa...@gmail.com Benoit, I send a little example. Run the app and try to scroll down the gridview by clicking in the scrollbar (don't click and move, only do click, click, click in the down or up arrows and you can

Re: [Gambas-user] GRIDVIEW: SCROLL DOUBLE CLICK

2009-12-02 Thread Benoît Minisini
Have you received the example? I did. -- Benoît Minisini -- Join us December 9, 2009 for the Red Hat Virtual Experience, a free event focused on virtualization and cloud computing. Attend in-depth sessions from

Re: [Gambas-user] textedit html behaviour

2009-12-02 Thread Matti
I'm not sure if I understood precisely what you want to do, but: I spent some time trying to get formatted text into TextEdit and finally used WebBrowser instead. This works perfectly with html-text. Matti Ron schrieb: Hi, I wanted to use a textEdit window to be able to do things like

Re: [Gambas-user] textedit html behaviour

2009-12-02 Thread Ron
Benoît Minisini schreef: Hi, I wanted to use a textEdit window to be able to do things like bold/colored text etc for individual lines. I noticed this behavoir: sText = bText/b FLogfiles.txtMainLog.Text = sText Displays: Text sText = bText/b

Re: [Gambas-user] Qt Slider orientation

2009-12-02 Thread Ron
Charlie Reinl schreef: Am Mittwoch, den 02.12.2009, 17:53 +0100 schrieb Ron_1st: On Wednesday 02 December 2009, Ron wrote: Hi, why is it not possible (so it seems to me) to set a sliders orientation to vertical in Gambas? http://doc.qt.nokia.com/3.3/qslider.html#orientation-prop

Re: [Gambas-user] Ok, what have I done?

2009-12-02 Thread Kadaitcha Man
2009/12/3 Benoît Minisini gam...@users.sourceforge.net: This happens in both Gambas 2.18 and 3. When I drag a hSplit or a vSplit onto a form, I can't add any controls to either the left or the right panel because the splitter is not functioning. Anyone got any suggestions? I'm not sure

Re: [Gambas-user] textedit html behaviour

2009-12-02 Thread Benoît Minisini
Benoît Minisini schreef: Hi, I wanted to use a textEdit window to be able to do things like bold/colored text etc for individual lines. I noticed this behavoir: sText = bText/b FLogfiles.txtMainLog.Text = sText Displays: Text sText = bText/b

Re: [Gambas-user] Qt Slider orientation

2009-12-02 Thread Benoît Minisini
Charlie Reinl schreef: Am Mittwoch, den 02.12.2009, 17:53 +0100 schrieb Ron_1st: On Wednesday 02 December 2009, Ron wrote: Hi, why is it not possible (so it seems to me) to set a sliders orientation to vertical in Gambas? http://doc.qt.nokia.com/3.3/qslider.html#orientation-prop

Re: [Gambas-user] Ok, what have I done?

2009-12-02 Thread Benoît Minisini
2009/12/3 Benoît Minisini gam...@users.sourceforge.net: This happens in both Gambas 2.18 and 3. When I drag a hSplit or a vSplit onto a form, I can't add any controls to either the left or the right panel because the splitter is not functioning. Anyone got any suggestions? I'm

Re: [Gambas-user] Component Show, Hide, Visible

2009-12-02 Thread D. L. Fox
Okay, I was thinking it was that way but wondered if I was missing something under the hood. Thanks. Kadaitcha Man wrote: 2009/12/2 D. L. Fox ubu...@frigginjiggy.com: Sorry for the newbie question but... What is the difference between setting the Visible property to False and calling the

Re: [Gambas-user] SYSTEM NOTIFICATIONS

2009-12-02 Thread Fabien Bodard
system notification are now managed via dbus 2009/12/2 Ron r...@cyberjunky.nl: On Ubuntu 9.10 this tool is not installed by default. $ notify-send The program 'notify-send' is currently not installed.  You can install it by typing: sudo apt-get install libnotify-bin notify-send: command not

Re: [Gambas-user] Qt Slider orientation

2009-12-02 Thread Ron_1st
On Wednesday 02 December 2009, Benoît Minisini wrote: Charlie Reinl schreef: Am Mittwoch, den 02.12.2009, 17:53 +0100 schrieb Ron_1st: On Wednesday 02 December 2009, Ron wrote: Hi, why is it not possible (so it seems to me) to set a sliders orientation to vertical in Gambas?

Re: [Gambas-user] Qt Slider orientation

2009-12-02 Thread Benoît Minisini
On Wednesday 02 December 2009, Benoît Minisini wrote: Charlie Reinl schreef: Am Mittwoch, den 02.12.2009, 17:53 +0100 schrieb Ron_1st: On Wednesday 02 December 2009, Ron wrote: Hi, why is it not possible (so it seems to me) to set a sliders orientation to vertical in

Re: [Gambas-user] Serial Port Change Events Not Working after Upgrade to Karmic

2009-12-02 Thread Tony
Benoit, Here is the output of valgrind as requested. I hope it helps. Regards, Tony.. $ valgrind --tool=memcheck --num-callers=50 gbx2 ==2404== Memcheck, a memory error detector ==2404== Copyright (C) 2002-2009, and GNU GPL'd, by Julian Seward et al. ==2404== Using

Re: [Gambas-user] Qt Slider orientation

2009-12-02 Thread Ron_1st
On Wednesday 02 December 2009, Benoît Minisini wrote: On Wednesday 02 December 2009, Benoît Minisini wrote: Charlie Reinl schreef: Am Mittwoch, den 02.12.2009, 17:53 +0100 schrieb Ron_1st: On Wednesday 02 December 2009, Ron wrote: Hi, why is it not possible (so it