Re: [Gambas-user] Why not .Columns.WIDTH = nn in new Gridview ?

2012-02-29 Thread Rolf-Werner Eilert
You could at least re-write the code to somewhat like FOR iCol = 1 TO 33 'or 0 to 33? GridView1.Columns[iCol].Width = number NEXT By the way, would this run? Never tried it: With GridView1 .columns.Count = 34 .Rows.Count = 12 FOR iCol = 1 TO 33 'or 0 to 33? .Columns[iCol].

[Gambas-user] DataSource & DataBrowser problem

2012-02-29 Thread John Rose
Re question on whether I use gb.gtk or gb.qt4: I specified gb.gui only i.e. neither gb.gtk nor gb.qt4. Since I'm using Ubuntu, I understand that this results in gb.gtk being used. Le 29/02/2012 10:10, John Rose a écrit : > I just installed all Gambas3 packages from kendek's launchpad

Re: [Gambas-user] gambas3 ans debain squeeze

2012-02-29 Thread girard henri
I don't know if you have gambas3 in your repository ? If yes then with a apt-get build-dep gambas3 should help you finding most of libs. Maybe you can add an ppa there are few now. I use 12.04 for few months now and the only problem i got was one week ago which is corrected now. Le 29/02/2012

Re: [Gambas-user] Why not .Columns.WIDTH = nn in new Gridview ?

2012-02-29 Thread richard terry
On Thursday 01 March 2012 10:26:25 Ru Vuott wrote: > Hello Benoit, > > with new Gridview I noticed that is not possible write: > > Gridview1.Columns.WIDTH = number With gridview1 .columns.count = 2 .columns[

[Gambas-user] Gambas runtime

2012-02-29 Thread Willy Raets
Hi, I'm trying to figure out if it is possible to detect the gambas runtime version in a command line manner, to be used in EXEC? Any ideas? Willy -- Virtualization & Cloud Management Using Capacity Planning Cloud comp

Re: [Gambas-user] Why not .Columns.WIDTH = nn in new Gridview ?

2012-02-29 Thread Ru Vuott
Yes, Benoit, before it was possible. An little exemple (before): With GridView1 .columns.Count = 34 .Rows.Count = 12 .Columns.Width = 12 ' <- .Rows.Height = 16 .Font.Size = 9 .Font.Bold = True End With Now, it's not possible !!! How can I set all

Re: [Gambas-user] Why not .Columns.WIDTH = nn in new Gridview ?

2012-02-29 Thread Benoît Minisini
Le 01/03/2012 00:26, Ru Vuott a écrit : > Hello Benoit, > > with new Gridview I noticed that is not possible write: > > Gridview1.Columns.WIDTH = number > > Now there are only: > Count > H > Height > Max > Resizable. > > Maybe, WIDTH in future revisions ? > > Bye > Vuott > What do you

Re: [Gambas-user] R: Process in TableVew and to Kill a Process - RECTIUS

2012-02-29 Thread Ru Vuott
By trying: Exec ["killall program_name"] it gives me an error: "Cannot run child process: cannot exec program: resource temporarily unavailable" But by using: SHELL "killall program_name" it's OK . --- Gio 1/3/12, Emil Lenngren ha scritto: > Da: Emil Lenngren > Oggetto: Re: [Gambas-u

Re: [Gambas-user] R: Process in TableVew and to Kill a Process - RECTIUS

2012-02-29 Thread Emil Lenngren
Try this: Exec("killall program_name") 2012/3/1 abbat > > It works only if I use Button1 (If we execute an app ourselves). > But how to kill process if we know only Name? > Thanks > > > Vuott wrote: > > > > ' Gambas class file > > > > Private hpro As Process > > > > > > Public Sub Button1_Click(

Re: [Gambas-user] R: Process in TableVew and to Kill a Process - RECTIUS

2012-02-29 Thread abbat
It works only if I use Button1 (If we execute an app ourselves). But how to kill process if we know only Name? Thanks Vuott wrote: > > ' Gambas class file > > Private hpro As Process > > > Public Sub Button1_Click() > > ' An application start, i.e. “ Gedit “ >   hpro = Exec ["gedit"] As

[Gambas-user] Why not .Columns.WIDTH = nn in new Gridview ?

2012-02-29 Thread Ru Vuott
Hello Benoit, with new Gridview I noticed that is not possible write: Gridview1.Columns.WIDTH = number Now there are only: Count H Height Max Resizable. Maybe, WIDTH in future revisions ? Bye Vuott -- Virtualiz

[Gambas-user] R: Process in TableVew and to Kill a Process - RECTIUS

2012-02-29 Thread Ru Vuott
' Gambas class file Private hpro As Process Public Sub Button1_Click() ' An application start, i.e. “ Gedit “   hpro = Exec ["gedit"] As "hpro" End Public Sub button2_Click() ' it closes application process   hpro.kill End ' this event is raised, when process is closed: Publ

[Gambas-user] R: Process in TableVew and to Kill a Process

2012-02-29 Thread Ru Vuott
' Gambas class file Private hpro As Process Public Sub Button1_Click() ' An application start, i.e. “ Gedit “ hpro = Exec ["gedit"] End Public Sub button2_Click() ' it closes application process hpro.kill End Public Sub hpro_Kill() ' this event is raised, when process is closed

Re: [Gambas-user] gambas3 ans debain squeeze

2012-02-29 Thread TME
Thanck Arnaud :drunk: but i have always the same result: -- GTK+ toolkit is disabled Cairo component is disabled ,FreeType backend for Cairo is disabled Image loading and saving is disabled GNU Scientific Library component is disable

[Gambas-user] Process in TableVew and to Kill a Process

2012-02-29 Thread abbat
Help me please. 1) How to situate processes in TableView or GridView by Name and PID columns? 2) How to kill Process? I cannot find any example of it and about Process.Kill. I tried: Dim p As Process = "tvtime" p.Kill Process.Kill(9207) _ Process.Kill(tvtime) Its does not work.

[Gambas-user] mouse down bug in Form IDE

2012-02-29 Thread richard terry
SVN is 4515 but this bug has been present for a while I've tried to narrow it down without success, but roughly seems to occur when a form is shown in the ide and the first thing you do is click on a control. If one goes to the hierachy tree first, clicks on anything, then goes back to the IDE

Re: [Gambas-user] gambas3 ans debain squeeze

2012-02-29 Thread . .
Hi, I use Gambas 3 on Debian Squeeze. First of all, remove the previous installed version (in root, with whereis command) I install the requirementsapt-get install build-essential autoconf libbz2-dev libfbclient2 \ libmysqlclient-dev unixodbc-dev libpq-dev libsqlite0-dev libsqlite3-dev \ libgtk2

Re: [Gambas-user] gambas3 ans debain squeeze

2012-02-29 Thread TME
Jussi Lahtinen yes i know ! before post here i tried this web :working: I post message here because in list french gambas user, Benoît Minisini say me that there is an error in list of package for Debian and gambas 3! Benoît Minisini => "Cette ligne est pour Gambas 2 apparemment, pas p

Re: [Gambas-user] gambas3 ans debain squeeze

2012-02-29 Thread Jussi Lahtinen
http://gambasdoc.org/help/doc/distro?en&view http://gambasdoc.org/help/install?en&view Jussi On Wed, Feb 29, 2012 at 17:31, TME wrote: > > Thank you for your replies > > I tried with library Ubuntu Lucid, Ubuntu Maverick, and other library > Ubuntu > I have always the same result : > ===> >

Re: [Gambas-user] gambas3 ans debain squeeze

2012-02-29 Thread TME
Thank you for your replies I tried with library Ubuntu Lucid, Ubuntu Maverick, and other library Ubuntu I have always the same result : ===> GTK+ toolkit is disabled Cairo component is disabled ,FreeType backend for Cairo is disabled Image loading and saving is disabled GNU Scientific Library c

Re: [Gambas-user] DataSource & DataBrowser problem

2012-02-29 Thread Benoît Minisini
Le 29/02/2012 10:10, John Rose a écrit : > I just installed all Gambas3 packages from kendek's launchpad ppa for > Gambas pre-release: he created them yesterday evening after using > subversion. How do I find out the version number of Gambas3 that he used > apart from asking him? Ask him : or find

Re: [Gambas-user] gb3: multiple errors

2012-02-29 Thread Emil Lenngren
Arrange the struct like this to get zero padding (I think): Data As String Timestamp As Float Player As Short Type As Byte Acknowledged As Boolean 2012/2/29 Benoît Minisini > Le 29/02/2012 07:26, Kevin Fishburne a écrit : > >>> > >>> Public Struct Server_QueueOut > >>> Acknowledged As Bool

Re: [Gambas-user] gb3: multiple errors

2012-02-29 Thread Benoît Minisini
Le 29/02/2012 07:26, Kevin Fishburne a écrit : >>> >>> Public Struct Server_QueueOut >>> Acknowledged As Boolean ' Whether or not transaction has been >>> acknowledged by recipient. >>> Player As Short ' Number of player transaction was sent to. >>> Timestamp As Float

Re: [Gambas-user] gambas3 ans debain squeeze

2012-02-29 Thread Jesus
El 29/02/12 13:08, TME escribió: > > Hi > > I tried to complier with the package for Ubuntu Lucid > The result for /config -C give me that : > || > || GTK+ toolkit is disabled > || > || Cairo component is disabled > || FreeType backend for Cairo is disabled > || > || Image loading and saving is dis

Re: [Gambas-user] gambas3 ans debain squeeze

2012-02-29 Thread TME
Hi I tried to complier with the package for Ubuntu Lucid The result for /config -C give me that : || || GTK+ toolkit is disabled || || Cairo component is disabled || FreeType backend for Cairo is disabled || || Image loading and saving is disabled || || GNU Scientific Library component is disable

[Gambas-user] gambas3 ans debain squeeze

2012-02-29 Thread TME
Hello I try to compile gambas3 on debian squeeze Somebody can say to me what are packages-dev necessary for the compilation (after download => svn checkout https://gambas.svn.sourceforge.net/svnroot/gambas/gambas/trunk/) ? I found nothing on this subject thanck you jean-luc -- View this messa

Re: [Gambas-user] How to organize dependent lists

2012-02-29 Thread Rolf-Werner Eilert
Thanks a lot for your ideas, I'll try and see if I get this organized with it. If anything goes wrong, I'll be back! :-) Regards Rolf Am 28.02.2012 21:17, schrieb nando: > The second level OBJECT[] actually turns out to be an array of Classes. > My experience is people understand the OBJECT[] w

Re: [Gambas-user] How to organize dependent lists

2012-02-29 Thread Rolf-Werner Eilert
Am 28.02.2012 18:33, schrieb tobi: > hi, > > On Tue, 28 Feb 2012, Rolf-Werner Eilert wrote: > >> Hi folks, >> >> I would be interested in your opinions. In a project I've got two lists >> of data and further data which are mutually dependent, such as >> >> item 1: >> item 1 a >> data 1

[Gambas-user] DataSource & DataBrowser problem

2012-02-29 Thread John Rose
I just installed all Gambas3 packages from kendek's launchpad ppa for Gambas pre-release: he created them yesterday evening after using subversion. How do I find out the version number of Gambas3 that he used apart from asking him? The previous problem is fixed when I try to add a new row to a SQL