Re: [Gambas-user] Slow Gridview creation

2009-03-27 Thread Rolf-Werner Eilert
No, you don't fill it, it fills itself :-) As soon as you change anything in the gridview (number of rows/columns for instance) or there is any event forcing it to rewrite its contents (the user switching screens or a .Refresh by your code), it jumps into the _Data event for every cell and

Re: [Gambas-user] Problem with gambas..

2009-03-27 Thread Mike Keehan
Carlos Humberto Llumiquinga Hidalgo wrote: Hi all I have a problem with a code on gambas.. I'm trying.. this code.. EXEC [rm, application.Path /imagenes/*.*] ... just I wanna erase the content of images folder. But I got an error.. on console... rm: can't erase

Re: [Gambas-user] PB using tableview object

2009-03-27 Thread Benoît Minisini
Hi, I'm trying to use the Tableview object in a project and I have 2 Columns configured. I have configured the TableView to be able to edit each Cell in the right column and lock the left Column but in real, by using the key, in edition mode, I can always acces to the left Column that is

Re: [Gambas-user] Unable to change valuebox contents after selecting record from combobox

2009-03-27 Thread Benoît Minisini
I am new to Gambas am having a small problem with a simple stock control program. When th program starts a file is read and each record is loaded and broken down and the element values are assigned to separate arrays, a combobox is loaded with the names of the stock items. On my form when

Re: [Gambas-user] Sdl.sound and Qt dependencies not satisfiable

2009-03-27 Thread Benoît Minisini
I checked the Deban contents and theses are the components listed below: I do not see gambas2-gb-sdl-sound gambas2 Complete visual development environment for Gambas gambas2-dev Gambas compilation tools gambas2-doc Gambas documentation gambas2-gb-chart The Gambas

Re: [Gambas-user] Floodfill / pie chart

2009-03-27 Thread Fabien Bodard
hi jussi, can you send me the vb code ? i'm working on gb.chart component... it may interest me just to complete my component (this component work fine only on svn version) thanks Le 27 mars 2009 11:31, Benoît Minisini gam...@users.sourceforge.net a écrit : Hi! I need pie chart in my

Re: [Gambas-user] Problem with gambas..

2009-03-27 Thread Rolf Schmidt
Hi Carlos I have a problem with a code on gambas.. I'm trying.. this code.. EXEC [rm, application.Path /imagenes/*.*] ... just I wanna erase the content of images folder. But I got an error.. on console... rm: can't erase «/home/carlosh/Prueba/imagenes/*.*»: File don't exists The exex

Re: [Gambas-user] Unable to change valuebox contents after selecting record from combobox

2009-03-27 Thread CelticBhoy
Thanx for the reply's but I managed to sort it, it was a problem with the combobox.index returning a negative number, and using the wrong event ( I had used change, worked with click ). After finding the problems it was simple to sort. Thanx again for quick reply's. -- View this message in

Re: [Gambas-user] Slow Gridview creation

2009-03-27 Thread Jesus Guardon
Still nothing... Data event seems to be not fired. Please, check the modified example: http://www.ea7dfh.es/demotableview.tar.gz This includes the sqlite3 database and is too big to attach in the e-mail.( ~600 Kb) What I'm doing wrong? Regards and thanks for your patience Jesús

Re: [Gambas-user] Slow Gridview creation

2009-03-27 Thread Fabien Bodard
simply the handle name is not good... you have named your gridview gv and not GridView1... it's an usual copypaste error ;-) PUBLIC SUB gv_Data(Row as integer, Column as integer) you have put the column between comma... this pactice is for the translated strings... but if you translate column

Re: [Gambas-user] My first rodeo in using the network component

2009-03-27 Thread M0E.lnx
But there has to be a way to do this using gambas objects, at least I would imagine. Of couse, I could use external commands to to get the results I want. Like curl -G url store the output in a string or string[] and work my way off of there. but I was kind of hoping there was a way to do this

Re: [Gambas-user] Sdl.sound and Qt dependencies not satisfiable

2009-03-27 Thread jbskaggs
Well I install 2.12 on 64 bit ubuntu via ./configure /make install and My LORD what a pain if your are missing dependencies! Its like some type of fraternity treasure hunt and the dependencies are not easy to find or even neccessarily easy to define especially if the install is looking for a

Re: [Gambas-user] Sdl.sound and Qt dependencies not satisfiable

2009-03-27 Thread jbskaggs
Well I install 2.12 on 64 bit ubuntu via ./configure /make install and My LORD what a pain if your are missing dependencies! Its like some type of fraternity treasure hunt and the dependencies are not easy to find or even neccessarily easy to define especially if the install is looking for a

Re: [Gambas-user] Slow Gridview creation

2009-03-27 Thread Jesus Guardon
Fabien Bodard escribió: simply the handle name is not good... you have named your gridview gv and not GridView1... it's an usual copypaste error ;-) Ha ha... it's my mistake. Finally I get it working, really really fast method. A lot of thanks for your help, I was mind-closed for a while!

[Gambas-user] Missing Component Directory in Ubuntu and Debian packages

2009-03-27 Thread jbskaggs
Could whoever packages the Ubuntu and / or Debian Packages look into fixing the gb-sdl-sound directories? They are missing and do not get installed. JB Skaggs -- View this message in context:

Re: [Gambas-user] Missing Component Directory in Ubuntu and Debian packages

2009-03-27 Thread José Luis Redrejo
2009/3/27 jbskaggs jbska...@skaggsworld.com Could whoever packages the Ubuntu and / or Debian Packages look into fixing the gb-sdl-sound directories? They are missing and do not get installed. Which one is missed? : http://packages.debian.org/squeeze/i386/gambas2-gb-sdl/filelist José L.

[Gambas-user] How to compile Gambas in Fedora 10

2009-03-27 Thread Marc Miralles
Hi all: Some idea or link about how to compile Gambas 2.12 or Gambas 3 in Fedora 10 In gambas website don't have information about what packages are necessaries for compile Gambas in Fedora 10 and some components are disabled when compile in Fedora 10. Please, I'm seek for this information in

Re: [Gambas-user] Missing Component Directory in Ubuntu and Debian packages

2009-03-27 Thread jbskaggs
gb-sdl and gb-sdl-sound are two seperate components and should have their own directories. I discovered this by accident when I ran Gambas on slackware and noticed it installed sdl-sound seperate form sdl. And sdl.sound component did not work on my Gambas package or the debian package and

[Gambas-user] Catch NULL character

2009-03-27 Thread CelticBhoy
What is wrong with this line :- IF sElement[iLoop] = NULL THEN sElement[iLoop] = 0 I want to catch a null character and change it to 0. -- View this message in context: http://www.nabble.com/Catch-NULL-character-tp22751957p22751957.html Sent from the gambas-user mailing list archive at

Re: [Gambas-user] How to compile Gambas in Fedora 10

2009-03-27 Thread Simonart Dominique
Marc Miralles a écrit : Hi all: Some idea or link about how to compile Gambas 2.12 or Gambas 3 in Fedora 10 In gambas website don't have information about what packages are necessaries for compile Gambas in Fedora 10 and some components are disabled when compile in Fedora 10. Please,