Re: [Gambas-user] Ubuntu 14.04 update and Gambas executables

2014-04-30 Thread Ian Haywood
On Thu, May 1, 2014 at 7:46 AM, Keith Clark wrote: > But I did do a fresh install from the Ubuntu repos of Gambas 3. Should > that not have done the same thing? no, what's in the standard ubuntu repos is very old (3.1.1), you need to use kendek's PPA as described. your error is probably that the

Re: [Gambas-user] Isn't "Allegro" cheerful with Gambas ?

2014-04-30 Thread Ru Vuott
> I suspect Allegro is trying to run > Gambas in other thread. ... this suspicion has arisen also in me. bye vuott -- "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selen

Re: [Gambas-user] Isn't "Allegro" cheerful with Gambas ?

2014-04-30 Thread Ru Vuott
> I still didn't get it to work, but it's closer already. yes, I also had this problem. -- "Accelerate Dev Cycles with Automated Cross-Browser Testing - For FREE Instantly run your Selenium tests across 300+ browser

Re: [Gambas-user] Isn't "Allegro" cheerful with Gambas ?

2014-04-30 Thread PICCORO McKAY Lenz
> From: Ru Vuott > ...following "Allegro4" API guide, I wrote an little application in C > language (here attached) to play an audio file WAV. > ***The application works regularly.*** > > hel yeah, theres people that still program in older allegro 4, allegro 4 its more faster rather than allegro5

Re: [Gambas-user] Isn't "Allegro" cheerful with Gambas ?

2014-04-30 Thread Jussi Lahtinen
> > You cannot just compile it as > > shared library, because it doesn't export any > > functionality. IE it's program not library. > > It's so strange that. I tranformed many C codes in shared library (i.e. > "aplaymidi") and all worked ! > What do you expect to be exported? Main function? >

Re: [Gambas-user] Ubuntu 14.04 update and Gambas executables

2014-04-30 Thread ISS Boss
Perhaps they need to be recompiled? I don't know for sure, but I did have to do that for one of my very old programs when I installed Gambas 3. Bill Keith Clark wrote, On 04/30/2014 17:46: But I did do a fresh install from the Ubuntu repos of Gambas 3. Should that not have done th

Re: [Gambas-user] Isn't "Allegro" cheerful with Gambas ?

2014-04-30 Thread Ru Vuott
> As Jussi said, you need to give us the command > you used to "compile like a shared > library" because you may have done it wrong... Hi Tobi, well, I used this line-command in Gambas code: Shell "gcc -o /tmp/allegroWAV.so " & Application.Path &/ "allegroWAV.c '/usr/lib/x86_64-linux-gnu/libal

Re: [Gambas-user] Ubuntu 14.04 update and Gambas executables

2014-04-30 Thread Keith Clark
But I did do a fresh install from the Ubuntu repos of Gambas 3. Should that not have done the same thing? Keith On 14-04-30 05:29 PM, ISS Boss wrote: > Give this a try: > sudo add-apt-repository ppa:nemh/gambas3 > sudo apt-get update > duso apt-get install gambas3 > I got bi

Re: [Gambas-user] Isn't "Allegro" cheerful with Gambas ?

2014-04-30 Thread Ru Vuott
> You cannot just compile it as > shared library, because it doesn't export any > functionality. IE it's program not library. It's so strange that. I tranformed many C codes in shared library (i.e. "aplaymidi") and all worked ! > I will look this later. Thank you, Jussi Bye vuott --

Re: [Gambas-user] Ubuntu 14.04 update and Gambas executables

2014-04-30 Thread Tobias Boege
On Wed, 30 Apr 2014, Keith Clark wrote: > After a recent update to Ubuntu 14.04 on a couple of my computers, I can > no longer execute my GAMBAS programs. No errors are given, they are > just not executable anymore. Ubuntu does not seem to know what to do > with them. > > They are not project

Re: [Gambas-user] Ubuntu 14.04 update and Gambas executables

2014-04-30 Thread ISS Boss
Give this a try: sudo add-apt-repository ppa:nemh/gambas3 sudo apt-get update duso apt-get install gambas3 I got bit by the same thing when 12.04 came along. My original install of Gambas apparently came from a different source. When i did this, I got Gambas updated and my o

[Gambas-user] Ubuntu 14.04 update and Gambas executables

2014-04-30 Thread Keith Clark
After a recent update to Ubuntu 14.04 on a couple of my computers, I can no longer execute my GAMBAS programs. No errors are given, they are just not executable anymore. Ubuntu does not seem to know what to do with them. They are not project files, but executables. This happened on two diff

Re: [Gambas-user] TreeView: Change parent key

2014-04-30 Thread Jørn Erik Mørne
I've got the newest Gambas development version now and can confirm that the .Reparent() works beautifully! Thanks a lot! -- Message: 2 Date: Sat, 26 Apr 2014 16:32:37 +0200 From: Beno?t Minisini Subject: Re: [Gambas-user] TreeView: Change parent key To: mailing list fo

Re: [Gambas-user] Isn't "Allegro" cheerful with Gambas ?

2014-04-30 Thread Tobias Boege
On Wed, 30 Apr 2014, Ru Vuott wrote: > Hello, > > ...following "Allegro4" API guide, I wrote an little application in C > language (here attached) to play an audio file WAV. > ***The application works regularly.*** > > I tried to transpose that C code in "Gambas code" (here attached), but... it

Re: [Gambas-user] Isn't "Allegro" cheerful with Gambas ?

2014-04-30 Thread Jussi Lahtinen
> - compiling that C code like a "shared library" .so and then calling it > via Gambas with "Shell" function, it doesn't work; > You cannot just compile it as shared library, because it doesn't export any functionality. IE it's program not library. - using external "Allegro4" functions via pure

[Gambas-user] Isn't "Allegro" cheerful with Gambas ?

2014-04-30 Thread Ru Vuott
Hello, ...following "Allegro4" API guide, I wrote an little application in C language (here attached) to play an audio file WAV. ***The application works regularly.*** I tried to transpose that C code in "Gambas code" (here attached), but... it does not work. I don't understand why. What confu