[Gambas-user] Never mind.....

2014-07-09 Thread Stephen
It's late and I've gone cross-eyed.. C++ extension to GCC was not installed DOH! -- Kindest Regards Stephen A. Bungay, Prop. Smarts On Site -- Open source business process management suite built on Java and Ecli

[Gambas-user] make fails for 3.5.4, need a little help...

2014-07-09 Thread Stephen
Fedora 20 Mate Desktop ./reconf-all works with no errors ./configure, only openal is not enabled make then proceeds to fail... Making all in image.effect make[5]: Entering directory `/home/user/Downloads/gambas3-3.5.4/main/lib/image.effect' CXX gb_image_effect_la-main.lo ../../libtool: l

[Gambas-user] More IDE wish list items

2014-07-09 Thread B Bruen
1) In the form designer context menu "Select" item controls popup list, the form itself is not listed. It would be nice to be able to use this when there is little or no space on the form to quickly get to the form itself. 2) In the form designer context menu as well as "Select All" could we als

[Gambas-user] Issue 536 in gambas: Form designer visual error when using control heirarchy

2014-07-09 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 536 by adamn...@gmail.com: Form designer visual error when using control heirarchy http://code.google.com/p/gambas/issues/detail?id=536 1) Describe the problem. If a cont

Re: [Gambas-user] interesting problem with Listbox.raise

2014-07-09 Thread Stephen
Ahh.. I've downloaded 3.5.4, time to see if I have all the dependencies set up in my VM. On 07/09/2014 08:51 AM, Benoît Minisini wrote: > Le 09/07/2014 14:32, Stephen a écrit : >> Gambas 3.5.3 >> Fedora 20 (Mate spin) >> A list box when made visible and brought to the foreground of its >

Re: [Gambas-user] Array example

2014-07-09 Thread Fabien Bodard
Garrrgh Dim Mycol as new collection Mycol=[2:12,4:13,5:11,8:18] Print mycol[4] Le 9 juil. 2014 12:47, "wig" a écrit : > > Make one array arrNumbers with > > 2 > 4 > 5 > 8 > > > Make another array arrData with > > 12 > 13 > 11 > 18 > > > Then look up the value in the first array (seems to be so

Re: [Gambas-user] Gambas 3.5.40 - Unable to compile gambas3

2014-07-09 Thread CJ
Just a FYI. > A mistake. I have fixed the source package, you can download > and compile it again. The new tar-ball compiled OK on Xubuntu 14.04 LTS.. [System] Gambas=3.5.4 OperatingSystem=Linux Kernel=3.13.0-30-generic Architecture=x86 Distribution=Ubuntu 14.04 LTS Desktop=XFCE Theme=QGtk Lang

Re: [Gambas-user] interesting problem with Listbox.raise

2014-07-09 Thread Benoît Minisini
Le 09/07/2014 14:32, Stephen a écrit : > Gambas 3.5.3 > Fedora 20 (Mate spin) > A list box when made visible and brought to the foreground of its > parent, continues to show its scroll-bar behind the other controls of > the same parent (see screenshot below). In addition, looking closely at > t

[Gambas-user] OOPS... forgot to attach the screenshot...

2014-07-09 Thread Stephen
Forgot to attache the screenshot, inline graphics don't come across.. my bad. -- Kindest Regards Stephen A. Bungay, Prop. Smarts On Site -- Open source business process management suite built on Java and Eclipse Turn

[Gambas-user] interesting problem with Listbox.raise

2014-07-09 Thread Stephen
Gambas 3.5.3 Fedora 20 (Mate spin) A list box when made visible and brought to the foreground of its parent, continues to show its scroll-bar behind the other controls of the same parent (see screenshot below). In addition, looking closely at the left side of the list box you can see the bord

Re: [Gambas-user] Exec statement not working though equivalent Terminal command works

2014-07-09 Thread Fabien Bodard
I think the f8 argument is parsed by the app Tobias Le 9 juil. 2014 11:50, "Tobias Boege" a écrit : > On Wed, 09 Jul 2014, John Rose wrote: > > I have this code: > > Print "mplex", "-f 8", "-o " & "'" & sCombinedPath & "'", "'" & > > sVideoPath & "'", "'" & sAudioPath & "'" > > Exec ["m

Re: [Gambas-user] Array example

2014-07-09 Thread wig
Make one array arrNumbers with 2 4 5 8 Make another array arrData with 12 13 11 18 Then look up the value in the first array (seems to be sorted) array count start at 0, so this is element number 1 i = arrNumbers.Find(4) ' find value 4 print i 1 and use the found index to take the e

[Gambas-user] Exec statement not working though equivalent Terminal command works

2014-07-09 Thread John Rose
Fabien, I've just tried your suggestion: Exec ["mplex", "-f 8", "-o", sCombinedPath , sVideoPath, sAudioPath] It works provided that none of the paths contains a space. What do I amend the command to allow for any/all of the paths containing a space? Also, I've found that if I code "TO sOutp

Re: [Gambas-user] Gambas 3.5.40 - Unable to compile gambas3

2014-07-09 Thread CJ
> -Original Message- > From: Benoît Minisini [mailto:gam...@users.sourceforge.net] > Sent: Tuesday, July 08, 2014 6:32 PM > To: mailing list for gambas users > Subject: Re: [Gambas-user] Gambas 3.5.40 - Unable to compile gambas3 > > > Le 08/07/2014 16:41, CJ a écrit : > > > > Tried to comp

Re: [Gambas-user] Exec statement not working though equivalent Terminal command works

2014-07-09 Thread Tobias Boege
On Wed, 09 Jul 2014, John Rose wrote: > I have this code: > Print "mplex", "-f 8", "-o " & "'" & sCombinedPath & "'", "'" & > sVideoPath & "'", "'" & sAudioPath & "'" > Exec ["mplex", "-f 8", "-o " & "'" & sCombinedPath & "'", "'" & > sVideoPath & "'", "'" & sAudioPath & "'"] To sOutput

Re: [Gambas-user] Array example

2014-07-09 Thread Fabien Bodard
Well ... Use a collection for that Le 9 juil. 2014 10:50, "abbat81" a écrit : > Hi > > help me with an array, please > > I heve a 2 column of data > > 2 - 12 > 4 - 13 > 5 - 11 > 8 - 18 > > How to use array. > > I need use For each in array to use: > > IF i = array[x, ?] THEN Print array[?, x] '

[Gambas-user] Array example

2014-07-09 Thread abbat81
Hi help me with an array, please I heve a 2 column of data 2 - 12 4 - 13 5 - 11 8 - 18 How to use array. I need use For each in array to use: IF i = array[x, ?] THEN Print array[?, x] ' If I get 4 then print 13, if I get 2 - print 12 . Thanks in advance... -- View this message in co

Re: [Gambas-user] Exec statement not working though equivalent Terminal command works

2014-07-09 Thread Fabien Bodard
Exec ["mplex", "-f 8", "-o", sCombinedPath , sVideoPath, sAudioPath] Le 9 juil. 2014 09:33, "John Rose" a écrit : > I have this code: > Print "mplex", "-f 8", "-o " & "'" & sCombinedPath & "'", "'" & > sVideoPath & "'", "'" & sAudioPath & "'" > Exec ["mplex", "-f 8", "-o " & "'" & sCo

Re: [Gambas-user] Exec statement not working though equivalent Terminal command works

2014-07-09 Thread Fabien Bodard
Exec ["mplex", "-f 8", "-o", "'" & sCombinedPath & "'", "'" & sVideoPath & "'", "'" & sAudioPath & "'"] Le 9 juil. 2014 09:33, "John Rose" a écrit : > I have this code: > Print "mplex", "-f 8", "-o " & "'" & sCombinedPath & "'", "'" & > sVideoPath & "'", "'" & sAudioPath & "'" > Exec ["

[Gambas-user] Exec statement not working though equivalent Terminal command works

2014-07-09 Thread John Rose
I have this code: Print "mplex", "-f 8", "-o " & "'" & sCombinedPath & "'", "'" & sVideoPath & "'", "'" & sAudioPath & "'" Exec ["mplex", "-f 8", "-o " & "'" & sCombinedPath & "'", "'" & sVideoPath & "'", "'" & sAudioPath & "'"] To sOutput I'm using the single quotes since they are requ