Re: [Gambas-user] Did anyone have a script to record webcame picture in video files

2010-12-21 Thread Fabien Bodard
ctrl+alt+m... to show the menu ? 2010/12/21 firman : > > i'm sorry,,  i've problem with my gambas3, i tried to install it in ubuntu > 10.10 and any problem there. When i openned gambas3 there was nothing > menus.. but the project can openned. So i use os windows for put the source > archive using

Re: [Gambas-user] CDE. An interesting packaging tool

2010-12-21 Thread Nicolas Koch
IS there any movement on the Gambas3 packaging suite to compile and/or include the runtime and libs for the various distributions? I also looked at the CDE route and exceptions can be made to keep files to a minimum and just run your app with cde gbr3 project.gambas I got minimal results though b

Re: [Gambas-user] Did anyone have a script to record webcame picture in video files

2010-12-21 Thread firman
i'm sorry,, i've problem with my gambas3, i tried to install it in ubuntu 10.10 and any problem there. When i openned gambas3 there was nothing menus.. but the project can openned. So i use os windows for put the source archive using winrar.. and here's the archive.. so u can extract the rar fil

Re: [Gambas-user] Gambas 3 advancement

2010-12-21 Thread Doriano Blengino
Benoît Minisini ha scritto: >> Benoît Minisini ha scritto: >> Pipes should not return EOF when the pipe is not closed. But they should return EOF when the other side closes. >>> Why ? >>> >> Because this is the way *all* unix routines work, and the only logica

Re: [Gambas-user] Gambas 3 advancement

2010-12-21 Thread Benoît Minisini
> > Note that for a socket, "there is date to read" does not mean the same > thing than for a pipe, because there is the network between two sides of a > socket. > Oops. Try again... Note that for a socket, "there is some data to read" does not mean the same thing than for a pipe, because ther

Re: [Gambas-user] Gambas 3 advancement

2010-12-21 Thread Benoît Minisini
> Benoît Minisini ha scritto: > >> Pipes should not return EOF when the pipe is not closed. But they should > >> return EOF when the other side closes. > > > > Why ? > > Because this is the way *all* unix routines work, and the only logical one. > > > EOF() actually means "there is nothing to re

Re: [Gambas-user] Making a web app

2010-12-21 Thread Fabien Bodard
or just make link fro /usr/local/bin/gbr2 to /usr/bin Le 21 décembre 2010 18:23, Benoît Minisini a écrit : >> Sorry for bothering you with this, I guess it all boils down to this >> error I found in the apache error log: /usr/bin/env cannot find gbr2: >> >> /usr/bin/env: gbr2: no such file or dir

Re: [Gambas-user] IsFloat

2010-12-21 Thread Jussi Lahtinen
Also that would prevent mix up with IsXXX functions when moving from Gambas 2 to 3. Jussi On Tue, Dec 21, 2010 at 19:18, Jussi Lahtinen wrote: > I was wondering if some (definitely not all!) of IsXXX functions should > have different names, example SafeForXXX or similar? > That would describe t

Re: [Gambas-user] Making a web app

2010-12-21 Thread Benoît Minisini
> Sorry for bothering you with this, I guess it all boils down to this > error I found in the apache error log: /usr/bin/env cannot find gbr2: > > /usr/bin/env: gbr2: no such file or directory > > The script can be started from the command line, however. Strange thing... > > Regards > > Rolf >

Re: [Gambas-user] Making a web app

2010-12-21 Thread Rolf Schmidt
Hi Rolf-Werner > Now, to make things somewhat clearer, let me add this: > > During the last two hours or so I set up a commandline application in > Gambas doing this: > > PUBLIC SUB Main() > >PRINT " Transitional//EN\">" Here you have to print an empty line - its part of the HTML-Standard! >

Re: [Gambas-user] IsFloat

2010-12-21 Thread Jussi Lahtinen
I was wondering if some (definitely not all!) of IsXXX functions should have different names, example SafeForXXX or similar? That would describe their new functionality better. Example, IsNull really tells if value Is Null or not (so IsNull is good name), but IsFloat tells only if value is safe to

Re: [Gambas-user] Making a web app

2010-12-21 Thread Rolf-Werner Eilert
Sorry for bothering you with this, I guess it all boils down to this error I found in the apache error log: /usr/bin/env cannot find gbr2: /usr/bin/env: gbr2: no such file or directory The script can be started from the command line, however. Strange thing... Regards Rolf

Re: [Gambas-user] Making a web app

2010-12-21 Thread Rolf-Werner Eilert
Am 21.12.2010 15:41, schrieb Rolf-Werner Eilert: > Hi folks, > > Just had the idea to implement a small application to be called via a > browser (it is to show the user a collection of pdf files, some choices > to choose from etc.). > > How could I do this in Gambas, or better: where do I start? I'

[Gambas-user] Making a web app

2010-12-21 Thread Rolf-Werner Eilert
Hi folks, Just had the idea to implement a small application to be called via a browser (it is to show the user a collection of pdf files, some choices to choose from etc.). How could I do this in Gambas, or better: where do I start? I've done command line applications in Gambas before, but ho

[Gambas-user] Control.Proxy property (was Re: Gambas 3 advancement)

2010-12-21 Thread Benoît Minisini
> > I'm currently implementing a Proxy class that allows to automatically > delegate events from one object to another one. But the result is not > beautiful. I must think about all that... I finally dropped my "Proxy" class, finding no way to implement it correctly. Instead, I created a "Proxy"

Re: [Gambas-user] IsFloat

2010-12-21 Thread Benoît Minisini
> I think it's right, because an integer isn't a float. Maybe you're thinking > in other function like "CanBeConvertedToFloat()" (doesn't exist in gambas > but it's on my own functions set). > > Regards, > Ricardo Díaz > I think Jussi is right there. After all, an Integer or a Long can always be

Re: [Gambas-user] Displaying the same form n times

2010-12-21 Thread vikram
Thank you very much :) --- On Tue, 12/21/10, vikram wrote: From: vikram Subject: To: "self" Date: Tuesday, December 21, 2010, 4:21 AM just use .ShowModal insteed of .show 2010/12/20 vikram : > Hi, > > Thanks a lot for your response :) > This opens all the IP > Input dialogs at one go. It wo