Re: [Gambas-user] Getting error running the SmallWiki Sample

2015-01-17 Thread Benoît Minisini
Le 17/01/2015 02:35, mx4evaNZ . a écrit : > I get the following error when I try to run the SmallWiki sample included > in GB3 > > If I try to run from within the IDE I get: > gb.httpd: bind 0.0.0.0 - Address already in use > > If I compile the program and try to run it, nothing happens. > > Runnin

Re: [Gambas-user] Issue 387 in gambas: Gridview crreated by adding rows does not scroll

2015-01-17 Thread gambas
Comment #3 on issue 387 by benoit.m...@gmail.com: Gridview crreated by adding rows does not scroll https://code.google.com/p/gambas/issues/detail?id=387 Sorry, I can't reproduce the problem at all. Please provide a full project. -- You received this message because this project is configured

Re: [Gambas-user] Issue 596 in gambas: GNU support

2015-01-17 Thread gambas
Updates: Status: Invalid Comment #1 on issue 596 by benoit.m...@gmail.com: GNU support https://code.google.com/p/gambas/issues/detail?id=596 (No comment was entered for this change.) -- You received this message because this project is configured to send all issue notifications to thi

Re: [Gambas-user] Issue 595 in gambas: GNU support

2015-01-17 Thread gambas
Updates: Status: NeedsInfo Comment #1 on issue 595 by benoit.m...@gmail.com: GNU support https://code.google.com/p/gambas/issues/detail?id=595 No, but you created the issue twice. And your patch does not make any GNU system magically supported. Which OS do you want to be supported exact

Re: [Gambas-user] Trying to use libmpv, but got Segmentation faults on exit

2015-01-17 Thread Benoît Minisini
Le 16/01/2015 12:58, Koko a écrit : > Hi, > among other problems that i did not solved, but at least worked around, > there is one i cannot solve by myself, nor i know if it is a bug in gambas > or a mistake by myself. > > libmpv is a library to access mpv mediaplayer, the library header is here: >

Re: [Gambas-user] Issue 595 in gambas: GNU support

2015-01-17 Thread gambas
Comment #2 on issue 595 by costamag...@gmail.com: GNU support https://code.google.com/p/gambas/issues/detail?id=595 I'm talking about GNU/HURD OS. It is a debian OS (not a release OS, but it is under development), and that patch makes at least gambas reconize it. I guess to make it build I ha

[Gambas-user] Issue 597 in gambas: Copying a not supported form control from another project gives unlogical result

2015-01-17 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 597 by r...@cyberjunky.nl: Copying a not supported form control from another project gives unlogical result https://code.google.com/p/gambas/issues/detail?id=597 1) Desc

[Gambas-user] R: Есть ли желающие из русскоязычного сообщества для поддержки сайта gambas.pro (Do R\russian-speaking volunteers from communities in the support site gambas.pro)

2015-01-17 Thread Ru Vuott
Hi, I reported russian "gambas.pro" site and its forum in italian Gambas forum: http://www.gambas-it.org/smf/index.php?topic=3883.0 bye vuott Sab 17/1/15, Беспалов Алексей ha scritto: Oggetto: [Gambas-user] Есть ли желающие из русскоязычного со

[Gambas-user] GridLayout like component needed

2015-01-17 Thread M. Cs.
Hi! I would like to know whether SWT's GridLayout could be implemented in Gambas. I see VPanel and HPanels but it seems to me that it isn't possible to say how many rows/columns should be inside such a container, and it makes them quite clumsy. E.g if I need 4 radioButtons in 2x2 layout and if I wa

Re: [Gambas-user] GridLayout like component needed

2015-01-17 Thread Fabien Bodard
In my opinion it miss an option in the arrage model of Benoit to enforce the number of Column in Column arrangement and the number of row in row arrangement. With that property and a scrollview you van achieve your goal. You can try to implement it too by yourself in a scrollview too. It's not so

[Gambas-user] need NOWAIT option for Process=Exec Command

2015-01-17 Thread Lewis Balentine
Well I am almost there and ran into a small hick-up. I am trying to create a program to schedule and record over the air (OTA) television broadcasts via ffmpeg and an IP based NTSC-Tunner (SiliconDust HDHR4-2US). If I use the GAMBAS statement: Exec Command then the ffmpeg command is execute

Re: [Gambas-user] need NOWAIT option for Process=Exec Command

2015-01-17 Thread Tobias Boege
On Sat, 17 Jan 2015, Lewis Balentine wrote: > Well I am almost there and ran into a small hick-up. I am trying to > create a program to schedule and record over the air (OTA) television > broadcasts via ffmpeg and an IP based NTSC-Tunner (SiliconDust > HDHR4-2US). If I use the GAMBAS statement:

Re: [Gambas-user] need NOWAIT option for Process=Exec Command

2015-01-17 Thread Lewis Balentine
I inserted the following line before my Exec statement: Debug Format(Now, "hh:mm:ss") MyProcess = Exec ["sleep", "10"] Debug Format(Now, "hh:mm:ss") Debug "PID:" & Trim(Str(MyProcess.Handle)) It worked as you said pvr.StartProcess.99: 14:01:57 pvr.StartP

Re: [Gambas-user] need NOWAIT option for Process=Exec Command

2015-01-17 Thread Lewis Balentine
You were correct (as usual). :-) There was an difference in the dynamically generated ffmpeg command arrays that I was using. The application is now functional so I can start working on the fine tunning and polish. Thank you for your help. Lewis On 01/17/2015 01:36 PM, Tobias Boege wrote: > D