Re: [Gambas-user] Making an image button launch an executable?

2009-03-01 Thread richard terry
On Mon, 2 Mar 2009 06:06:17 pm Marc Carson wrote: > I'm just starting to learn Gambas and I'd like to know how to make an > image-button launch an executable or a Bash script. I'd like to make a > grid of buttons that I can customize in this way, each button with its > own icon, sort of like how la

[Gambas-user] Making an image button launch an executable?

2009-03-01 Thread Marc Carson
I'm just starting to learn Gambas and I'd like to know how to make an image-button launch an executable or a Bash script. I'd like to make a grid of buttons that I can customize in this way, each button with its own icon, sort of like how launchers work on the GNOME panel. Is this doable? If so

Re: [Gambas-user] question about gambas2-runtime

2009-03-01 Thread Vackoy
When I make an installation package (in Ubuntu), it doesn't generate the necessary dependences for the modules that I need for my program to run. I want to install my program in another computer by I don't want to install/compile gambas as a whole. Can this be done? Thanks Marcel Dimitris An

[Gambas-user] PRINT #process Example

2009-03-01 Thread Dimitris Anogiatis
hey guys I've read the documentation on Process_Read() but I can't find a way to detect when the process has stopped and it's waiting for an input; to my understanding I can provide that input with PRINT #Process, "input" but so far I haven't found a full example of how that is done. can someone

Re: [Gambas-user] Probable bug in Postgres db driver

2009-03-01 Thread Benoît Minisini
> > I've posted about this before in regards to the PictureDatabase example, > > as in postgres though you can save the picture, it dosn't retreive. I had > > asked someone to test it, though no-one appears to have had the time. > > > > This driver is pretty critical to my medical records project,

Re: [Gambas-user] String[] initialisation

2009-03-01 Thread Doriano Blengino
Ian Haywood ha scritto: > I would like to initialise a String array to an array of zero elements. > > Setting to [] seems to be the same as NULL, which fires an error if .Length > or .Push are called. > Setting to ["foo"] (i.e. to an array of one dummy element), and then calling > .Clear () > doe

Re: [Gambas-user] Missing gambas2-gb-settings in OpenSuse

2009-03-01 Thread Jesus Guardon
Thanks, Benoît I think he's Guillermo Ballester Valor, so I will contact him. Regards Jesús Guardón Benoît Minisini escribió: >> Hello >> >> I'm trying to test my application (which uses gb.settings) into a >> virtualized OpenSuse. >> >> All dependencies are found, except gambas2-gb-settings. I

Re: [Gambas-user] Missing gambas2-gb-settings in OpenSuse

2009-03-01 Thread Benoît Minisini
> Hello > > I'm trying to test my application (which uses gb.settings) into a > virtualized OpenSuse. > > All dependencies are found, except gambas2-gb-settings. I've browsed > repositories manually and also had no luck. > > Even if I install the whole Gambas IDE into OpenSuSe, debugging the > appl

[Gambas-user] String[] initialisation

2009-03-01 Thread Ian Haywood
I would like to initialise a String array to an array of zero elements. Setting to [] seems to be the same as NULL, which fires an error if .Length or .Push are called. Setting to ["foo"] (i.e. to an array of one dummy element), and then calling .Clear () does what I want, but this doesn't look