Re: [Gambas-user] hyperlinks in TextLabel (and TextArea) controls

2012-11-12 Thread Bruce
On Mon, 2012-11-12 at 23:23 +1030, Bruce wrote: > Will try Jussi's suggestion. > > Back tomorrow. > cheers > Bruce > Which, of course, worked perfectly. Thanks Jussi. In the clear light of day, the solution became pretty obvious, seeing as the three url's are fixed and I know what they are anyw

Re: [Gambas-user] Example 'Painting 3.2.0' doesn't run

2012-11-12 Thread Matti
Yes and No. Yes: if if I open this example in the trunk directory and remove that entry, it runs. No: Any "normal" user that open this example in "examples" has no chance to remove this option, because it is write protected. So, this entry should be removed. What is it good for, anyway? Am 1

Re: [Gambas-user] Example 'Painting 3.2.0' doesn't run

2012-11-12 Thread Benoît Minisini
Le 12/11/2012 21:04, Matti a écrit : > I get the error that the class 'Form' couldn't be loaded, because: > gb.gui: unable to load 'gb.gtk' component > > Yes, I don't have GTK but QT (rev. 5315), but this example uses the gb.gui > component that should switch to the used desktop. And I'm sure

Re: [Gambas-user] Issue 354 in gambas: TreeView.RowToItem.296: #13: Null object (gambas3 r5302)

2012-11-12 Thread Alexie
I tried r5319 and it works fine now. Again thanks for fixing it. 2012/11/12 > > Comment #4 on issue 354 by benoit.m...@gmail.com: TreeView.RowToItem.296: > #13: Null object (gambas3 r5302) > http://code.google.com/p/gambas/issues/detail?id=354 > > It should really be fixed with revision #5316. >

Re: [Gambas-user] IDE Toolbox: a 'left' arrow is missing

2012-11-12 Thread Matti
Indeed! Once again something I would never have tried... Am 12.11.2012 20:59, schrieb Benoît Minisini: > You can use the mouse wheel to scroll the tabs. -- Monitor your physical, virtual and cloud infrastructure from a

Re: [Gambas-user] Issue 354 in gambas: TreeView.RowToItem.296: #13: Null object (gambas3 r5302)

2012-11-12 Thread gambas
Comment #4 on issue 354 by benoit.m...@gmail.com: TreeView.RowToItem.296: #13: Null object (gambas3 r5302) http://code.google.com/p/gambas/issues/detail?id=354 It should really be fixed with revision #5316. -- Monitor

[Gambas-user] Example 'Painting 3.2.0' doesn't run

2012-11-12 Thread Matti
I get the error that the class 'Form' couldn't be loaded, because: gb.gui: unable to load 'gb.gtk' component Yes, I don't have GTK but QT (rev. 5315), but this example uses the gb.gui component that should switch to the used desktop. And I'm sure it has been working before. ???

Re: [Gambas-user] IDE Toolbox: a 'left' arrow is missing

2012-11-12 Thread Benoît Minisini
Le 12/11/2012 20:57, Matti a écrit : > If the 'properties' window has a width smaller than all the tabs of the > toolbox, there is a 'right' arrow to display the 'Container' and > 'Special' tab. > > But once I'm there to the right, there is no way to get back to the left > tabs. There is no 'left'

[Gambas-user] IDE Toolbox: a 'left' arrow is missing

2012-11-12 Thread Matti
If the 'properties' window has a width smaller than all the tabs of the toolbox, there is a 'right' arrow to display the 'Container' and 'Special' tab. But once I'm there to the right, there is no way to get back to the left tabs. There is no 'left' arrow, and even if I drag the properties wind

Re: [Gambas-user] Issue 356 in gambas: CComponent.Load.506 Out Of Bound with specific db component

2012-11-12 Thread gambas
Updates: Status: Fixed Comment #1 on issue 356 by benoit.m...@gmail.com: CComponent.Load.506 Out Of Bound with specific db component http://code.google.com/p/gambas/issues/detail?id=356 Fixed in revision #5318. --

[Gambas-user] Issue 356 in gambas: CComponent.Load.506 Out Of Bound with specific db component

2012-11-12 Thread gambas
Status: New Owner: Labels: Version-TRUNK Type-Bug Priority-Medium OpSys-Any Dist-Ubuntu Arch-Any Desktop-Any GUI-Any New issue 356 by sot...@gmail.com: CComponent.Load.506 Out Of Bound with specific db component http://code.google.com/p/gambas/issues/detail?id=356 1) Describe the problem

Re: [Gambas-user] The "Shell" Command

2012-11-12 Thread Jussi Lahtinen
You didn't get any messages to terminal? I'm pretty much out of ideas right now, but maybe you could try to reinstall Gambas with following commands: sudo apt-get purge gambas3 sudo apt-get install gambas3 Purge option will remove Gambas completely including it's configs. Jussi On Mon, Nov

Re: [Gambas-user] The "Shell" Command

2012-11-12 Thread John
Whoowhee! Sorry guys, I have been away from the computer for a few days. I tried running the app from the terminal as user and as sudo but it still did not work. Do I need to reinstall Gambas 3.3.3? Let me know and I will if I have too. On a side note, I think I will start over with

Re: [Gambas-user] hyperlinks in TextLabel (and TextArea) controls

2012-11-12 Thread Bruce
One final thought. I suppose I could churn a custom "LinkLabel" control that would have a Text property and a Link property such that .Text would be a Subst string and .Link would be the hyperlink text. It would also intercept the MouseUp event and raise a Click(sLink as string) event. With the ca

Re: [Gambas-user] hyperlinks in TextLabel (and TextArea) controls

2012-11-12 Thread Bruce
On Mon, 2012-11-12 at 23:18 +1030, Bruce wrote: > On Mon, 2012-11-12 at 13:38 +0100, Benoît Minisini wrote: > > Le 12/11/2012 13:30, Bruce a écrit : > > > Hi folks, > > > > > > With the above mentioned controls, is there a way to detect or intercept > > > clicks on hyperlinks in the text contained.

Re: [Gambas-user] hyperlinks in TextLabel (and TextArea) controls

2012-11-12 Thread Jussi Lahtinen
> > >> 2) how to get the hyperlink like "Copy Link Location" does. >> > > Do you mean how to get the URL to clipboard? > http://gambasdoc.org/help/comp/gb.qt/clipboard > Sorry, this is the correct link: http://gambasdoc.org/help/comp/gb.qt4/clipboard?v3&en Jussi -

Re: [Gambas-user] hyperlinks in TextLabel (and TextArea) controls

2012-11-12 Thread Bruce
On Mon, 2012-11-12 at 13:38 +0100, Benoît Minisini wrote: > Le 12/11/2012 13:30, Bruce a écrit : > > Hi folks, > > > > With the above mentioned controls, is there a way to detect or intercept > > clicks on hyperlinks in the text contained. By way of example, attached > > is a screenshot of our sta

Re: [Gambas-user] hyperlinks in TextLabel (and TextArea) controls

2012-11-12 Thread Jussi Lahtinen
> What I can't work out is > 1) how to trap a single click on the TextLabel and > This is pretty much same as click event: Public Sub TextLabel1_MouseUp() If Mouse.Left = True Then If Mouse.X >= 0 And Mouse.Y >= 0 And Mouse.X <= TextLabel1.Width And Mouse.y <= TextLabel1.Height Then Pr

Re: [Gambas-user] hyperlinks in TextLabel (and TextArea) controls

2012-11-12 Thread Benoît Minisini
Le 12/11/2012 13:30, Bruce a écrit : > Hi folks, > > With the above mentioned controls, is there a way to detect or intercept > clicks on hyperlinks in the text contained. By way of example, attached > is a screenshot of our standard AboutMe form. The three hyperlinks are > in TextLabel controls.

Re: [Gambas-user] hyperlinks in TextLabel (and TextArea) controls

2012-11-12 Thread Bruce
Sorry, here is a better shot that shows the exact TextLabels. That should make the problem a bit clearer. B <>-- Everyone hates slow websites. So do we. Make your web apps faster with AppDynamics Download AppDynamics Lite

[Gambas-user] hyperlinks in TextLabel (and TextArea) controls

2012-11-12 Thread Bruce
Hi folks, With the above mentioned controls, is there a way to detect or intercept clicks on hyperlinks in the text contained. By way of example, attached is a screenshot of our standard AboutMe form. The three hyperlinks are in TextLabel controls. There appears to be a DoubleClick event and an

Re: [Gambas-user] TableView doesn't edit anymore?

2012-11-12 Thread Benoît Minisini
Le 12/11/2012 07:54, Bruce a écrit : > It just doesn't edit at all??? > Rev 5315 > > All I get from the attached is: > FTableView.tvwMain_Click.33: > FTableView.tvwMain_Save.47: 0 2 > FTableView.tvwMain_Click.33: > > ??? > Bruce > > It should be fixed in revision #5317. Regards, -- Benoît Min