Re: [Gambas-user] Further info on DataaCheckBox Bugs

2013-12-01 Thread Benoît Minisini
Le 02/12/2013 01:58, Marty a écrit : > I have cross checked the properties and events between the CheckBox > control and the DataCheckBox control and find them to be different. The > CheckBox control supports the trisate property, the first click sets > false the second true and the click event wor

[Gambas-user] Further info on DataaCheckBox Bugs

2013-12-01 Thread Marty
I have cross checked the properties and events between the CheckBox control and the DataCheckBox control and find them to be different. The CheckBox control supports the trisate property, the first click sets false the second true and the click event works as expected. The DataCheckBox does not

Re: [Gambas-user] Online radio with "Shell"

2013-12-01 Thread Jussi Lahtinen
Private $hMPlayer As Process Public Sub _new() $hMPlayer = Shell "mplayer -slave -cache 128 http://music.myradio.ua/trance_news128.mp3>" For Input Output As "MPlayer" End Public Sub btnStopPlayback_Click() Print #$hMPlayer, "stop" End Public Sub Button1_Click() _new() End --> Private $

Re: [Gambas-user] Online radio with "Shell"

2013-12-01 Thread abbat81
Tobi, here is the my code: Private $hMPlayer As Process Public Sub _new() $hMPlayer = Shell "mplayer -slave -cache 128 http://music.myradio.ua/trance_news128.mp3>" For Input Output As "MPlayer" End Public Sub btnStopPlayback_Click() Print #$hMPlayer, "stop" End Public Sub Button1_C

Re: [Gambas-user] Online radio with "Shell"

2013-12-01 Thread Tobias Boege
On Sun, 01 Dec 2013, abbat81 wrote: > Tobi, thank you.. > and excuse me please, but last question. > > How to start that process? > > > Public Sub Button3_Click() > _new() > End > _new() is automatically called when your form (I suspected you use forms) is created. You can equivalently well

Re: [Gambas-user] Online radio with "Shell"

2013-12-01 Thread abbat81
Tobi, thank you.. and excuse me please, but last question. How to start that process? Public Sub Button3_Click() _new() End Thanks, Peter -- View this message in context: http://gambas.8142.n7.nabble.com/Online-radio-with-Shell-tp44487p44493.html Sent from the gambas-user mailing list a

Re: [Gambas-user] Online radio with "Shell"

2013-12-01 Thread Tobias Boege
On Sun, 01 Dec 2013, abbat81 wrote: > Hi Tobi, > Can you explain or give example please? > > I don't understand how to use > "Print #$hMPlayer, sCommand" > > I got: > "Unknown identifier #$hMPlayer" > > How should I declare the #$hMPlayer? > > Thaks You want to communicate with the mplayer p

Re: [Gambas-user] Online radio with "Shell"

2013-12-01 Thread abbat81
Hi Kendek, Thank you for your reply. Using your code I got a music. Also I have a information about playback in console of Gambas. Can I send that info to any GUI control? Thanks. :) -- View this message in context: http://gambas.8142.n7.nabble.com/Online-radio-with-Shell-tp44487p44491.html S

Re: [Gambas-user] Online radio with "Shell"

2013-12-01 Thread abbat81
Hi Tobi, Can you explain or give example please? I don't understand how to use "Print #$hMPlayer, sCommand" I got: "Unknown identifier #$hMPlayer" How should I declare the #$hMPlayer? Thaks -- View this message in context: http://gambas.8142.n7.nabble.com/Online-radio-with-Shell-tp44487p4

Re: [Gambas-user] Online radio with "Shell"

2013-12-01 Thread Tobias Boege
On Sun, 01 Dec 2013, abbat81 wrote: > Hi! > Help me please. > I want to make some small GUI app for online radio using "Shell" > Here is sample string for terminal. > > > *"mplayer -cache 128 http://music.myradio.ua/trance_news128.mp3"* > > > How can I use it? > > Hext does not work: > > *

Re: [Gambas-user] Online radio with "Shell"

2013-12-01 Thread Kende Krisztián
2013-12-01 21:30 keltezéssel, abbat81 írta: > Hi! > Help me please. > I want to make some small GUI app for online radio using "Shell" > Here is sample string for terminal. > > > *"mplayer -cache 128 http://music.myradio.ua/trance_news128.mp3"* > > > How can I use it? > > Hext does not work:

[Gambas-user] Online radio with "Shell"

2013-12-01 Thread abbat81
Hi! Help me please. I want to make some small GUI app for online radio using "Shell" Here is sample string for terminal. *"mplayer -cache 128 http://music.myradio.ua/trance_news128.mp3"* How can I use it? Hext does not work: *Public Sub Form_Open() Dim a As String Shell "mplayer -cache

Re: [Gambas-user] Where are the examples in gambas 3.5.1?

2013-12-01 Thread Matti
G'day Carl, something seems to be wrong in both of our repositories. I looked at my gambas (didn't use it for quite a while) and saw that it is 3.4.1! Then looked into YaSt to see why it was not updated automatically. Most of the components in the repository are 3.5.1, but some (e.g. gb.gui) are

Re: [Gambas-user] Compiling A Gambas Project

2013-12-01 Thread Tobias Boege
On Sun, 01 Dec 2013, Nigel Verity wrote: > > > > Hi Tobi > > Perhaps if I describe a scenario I encountered yesterday you can advise on > whether the behaviour should be expected or whether there is actually a bug. > > I always structure my projects using the default approach so that each for

Re: [Gambas-user] Compiling A Gambas Project

2013-12-01 Thread Nigel Verity
Hi Tobi Perhaps if I describe a scenario I encountered yesterday you can advise on whether the behaviour should be expected or whether there is actually a bug. I always structure my projects using the default approach so that each form has its associated .class file in which the form-specifi

Re: [Gambas-user] Compiling a Gambas Project

2013-12-01 Thread Tobias Boege
On Sun, 01 Dec 2013, Nigel Verity wrote: > Hi > > When I perform a "Compile" or "Compile All" operation from the Gambas menu > any language syntax errors seem to be identified correctly. The same applies > to declaration errors. However, I have noticed that calls to non-existant > functions (as

[Gambas-user] Configure method of ToolBar

2013-12-01 Thread Jesus
Hi all I'm trying to get up and running a project which have a Toolbar and some toolbuttons in it. I'd like to mimic the same behavior toolbars have in Gambas' IDE. I've read the docs about Toolbar (gb.form.mdi) but calling the configure method throws an error aborting my application. BTW, all

Re: [Gambas-user] Web apps

2013-12-01 Thread Benoît Minisini
Le 01/12/2013 10:26, John Rose a écrit : > Thanks, Rob, Piccoro & Benoit, for your responses, > > I don't see the Gambas Documentation Wiki app in the examples for Gambas > 3.5.1: where can it be obtained? Can the Gambas project for > http://www.gambasforge.org/index.html be downloaded? Please dire

[Gambas-user] Compiling a Gambas Project

2013-12-01 Thread Nigel Verity
Hi When I perform a "Compile" or "Compile All" operation from the Gambas menu any language syntax errors seem to be identified correctly. The same applies to declaration errors. However, I have noticed that calls to non-existant functions (as a result of spelling errors) are often not flagged.

Re: [Gambas-user] Semi-persistent pop-up form?

2013-12-01 Thread Bruce
On Tue, 2013-11-12 at 16:12 +0100, Benoît Minisini wrote: > Le 12/11/2013 00:19, Bruce a écrit : > > On Mon, 2013-11-11 at 22:30 +0100, Benoît Minisini wrote: > >> Le 11/11/2013 21:47, Bruce a écrit : > >>> Is there some way to make a popup form only close on a specific user > >>> action? > >>> > >

Re: [Gambas-user] gb.xml "unSerialize"

2013-12-01 Thread Bruce
On Sat, 2013-10-19 at 22:29 +0200, Adrien Prokopowicz wrote: > Well, looks like there is a little bug here. I will fix that tomorrow. > > Le Sat, 19 Oct 2013 20:15:57 +0200, Bruce a écrit: > > First, thanks all for the replies. > > > > re: Content v Contents > >I think (not that A

Re: [Gambas-user] Semi-persistent pop-up form?

2013-12-01 Thread Bruce
On Tue, 2013-11-12 at 12:45 -0700, paulwheeler wrote: > Bruce, > > Unfortunately, I have no answer for your question, but wanted to say that > your illustrations are SO COOL! > > If you don't mind my asking, how did you do them? > > paul Hi Paul, Thanks for the comp. But the "overlay" is just

Re: [Gambas-user] Web apps

2013-12-01 Thread Fabien Bodard
Take a look on SourceForge Le 1 déc. 2013 10:27, "John Rose" a écrit : > Thanks, Rob, Piccoro & Benoit, for your responses, > > I don't see the Gambas Documentation Wiki app in the examples for Gambas > 3.5.1: where can it be obtained? Can the Gambas project for > http://www.gambasforge.org/index

Re: [Gambas-user] Web apps

2013-12-01 Thread John Rose
Thanks, Rob, Piccoro & Benoit, for your responses, I don't see the Gambas Documentation Wiki app in the examples for Gambas 3.5.1: where can it be obtained? Can the Gambas project for http://www.gambasforge.org/index.html be downloaded? Please direct me to an example of (ideally) a Gambas app (