[Gambas-user] gb3: gb.sdl.sound: How to adjust the volume of a sound being played

2011-07-15 Thread Kevin Fishburne
I have some code: ' General declarations. Public Ocean As Sound = New Sound(GUI.basepath & "/sound/Ocean.wav") Public SeawashHeavy As Sound = New Sound(GUI.basepath & "/sound/Seawash, Heavy.wav") Public Lake As Sound = New Sound(GUI.basepath & "/sound/Lake.wav") Public SeawashMedium As Sound = Ne

Re: [Gambas-user] a gambas3 component does not provide underlying components

2011-07-15 Thread BenoƮt Minisini
> Salut Benoit, > > I'm porting actually a gambas2 application to gambas3. > > The application consists of several parts. These parts can be ran as > executable, or used as component (now Library) in other applications. > > Now I remarked that while gambas2, when using a component, which it self

Re: [Gambas-user] restarting a gambas application

2011-07-15 Thread Demosthenes Koptsis
I think you need to fork a process or something like that. As i know in Gambas the only thing that this happens is when you set Application.Deamon property. http://gambasdoc.org/help/comp/gb/application/daemon?v3 The application forks, and terminates the newly created parent, so that the real p

Re: [Gambas-user] restarting a gambas application

2011-07-15 Thread Kevin Fishburne
On 07/15/2011 01:40 PM, zachsmith...@gmail.com wrote: > > Does anyone know how to automatically close and restart a running gambas > program? > > For example, if I have a program update available, I'd like to click a > button in my program ("Install/Run update") that would start an > intermediate p

[Gambas-user] restarting a gambas application

2011-07-15 Thread zachsmith022
Does anyone know how to automatically close and restart a running gambas program? For example, if I have a program update available, I'd like to click a button in my program ("Install/Run update") that would start an intermediate program that would stop my program, then the intermediate progr