Re: [Gambas-user] Startup problems

2009-05-28 Thread charlesg
I don't think you answered Diego's questions? The last time I installed Gambas 2.8 from Applications, Add/Remove in Ubuntu 9.04, the installation was incomplete and I had to go into Synaptic (system, administration, synaptic), do a search on Gambas and install the all related packages. rgds --

Re: [Gambas-user] Startup problems

2009-05-28 Thread KhurramM
are all of the following packages installed? gambas2_2.0.0-1_i386.deb gambas2-dev_2.7-1_i386.deb gambas2-doc_2.0.0-1_i386.deb gambas2-gb-chart_2.0.0-1_i386.deb gambas2-gb-compress_2.0.0-1_i386.deb gambas2-gb-compress-bzlib2_2.0.0-1_i386.deb gambas2-gb-compress-zlib_2.0.0-1_i386.deb

Re: [Gambas-user] Disable controls by Tag

2009-05-28 Thread Ron_1st
On Thursday 28 May 2009, Jesus Guardon wrote: Hi all It seems a basic question, but I'm unable to get it to work. I need to enable/disable a group of mixed controls in the Main Form, but instead of doing individually, I'd prefer to do so by iterating. Following is the code I'm using and

Re: [Gambas-user] Disable controls by Tag (Solved)

2009-05-28 Thread Jesus Guardon
Ron_1st escribió: On Thursday 28 May 2009, Jesus Guardon wrote: Hi all It seems a basic question, but I'm unable to get it to work. I need to enable/disable a group of mixed controls in the Main Form, but instead of doing individually, I'd prefer to do so by iterating. Following is the

Re: [Gambas-user] Disable controls by Tag

2009-05-28 Thread Jorge Carrión
¿Perhaps trying sonething like this? PUBLIC SUB btnQuick_Click() 'toggle button DIM hCtl AS Control IF btnQuick.Value = TRUE THEN FOR EACH hCtl IN FMain.Controls TRY hCtl.Enabled = (hCtl.Tag exclude) NEXT it Is not very elegant but it works, I guess.

Re: [Gambas-user] Startup problems

2009-05-28 Thread Keith Clark
On Wed, 2009-05-27 at 23:12 -0700, charlesg wrote: I don't think you answered Diego's questions? Indeed I did not, sorry about that. I am using Ubuntu 9.04 The last time I installed Gambas 2.8 from Applications, Add/Remove in Ubuntu 9.04, the installation was incomplete and I had to go

[Gambas-user] MySQL database interaction tutorial

2009-05-28 Thread Keith Clark
Is there a good MySQL interaction tutorial available? Keith -- Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT is a gathering of tech-side developers brand creativity professionals. Meet the

[Gambas-user] gb.net componet

2009-05-28 Thread JOHN FERREIRA
Hi do I install components? Specifically gb.net ? Thanks, John -- Register Now for Creativity and Technology (CaT), June 3rd, NYC. CaT is a gathering of tech-side developers brand creativity professionals. Meet the

[Gambas-user] gb.net.curl - error codes.

2009-05-28 Thread Steven James Drinnan
Hi am completing another project. To get weather information from the HK Observatory's web site. But I some times get error codes from the HTTP component. 1. Is there list of error codes that this component returns 2. Is there a method to reset the connection when I get an error?

Re: [Gambas-user] Disable controls by Tag

2009-05-28 Thread Ron_1st
On Thursday 28 May 2009, Jorge Carrión wrote: ¿Perhaps trying sonething like this? PUBLIC SUB btnQuick_Click() 'toggle button DIM hCtl AS Control IF btnQuick.Value = TRUE THEN FOR EACH hCtl IN FMain.Controls TRY hCtl.Enabled = (hCtl.Tag exclude)

Re: [Gambas-user] server socket problem

2009-05-28 Thread Ron_1st
On Monday 25 May 2009, guiodic wrote: Ron_1st wrote: No, this is not correct. My internet connection is 20Mbits (20/8 = 2500 KByte/second) When I write 1Kb (8kbit) it goes with 20Mbs speed on the wire. Using packets of 1 KByte every second is a transfer rate (bandidth) The