Re: [Gambas-user] Using ComboBoxes

2012-11-06 Thread Bill-Lancaster
Thank you Fabien, I'm glad I asked! -- View this message in context: http://old.nabble.com/Using-ComboBoxes-tp34648008p34650581.html Sent from the gambas-user mailing list archive at Nabble.com. -- LogMeIn Central: Ins

Re: [Gambas-user] Gambas Friendly OS

2012-11-06 Thread John
Thanks, we will see what we can do to make it a solid distro that users will want to use. "Glubuntu"..? I will stick with "Orca" for now LMAO! It "rolls" better off the tung I think but I am open for suggestions. -John - Original Message - From: Benoît Minisini Sent: 11/0

Re: [Gambas-user] Gambas Friendly OS

2012-11-06 Thread Benoît Minisini
Le 06/11/2012 22:14, John a écrit : > For anyone who may be interested. A couple of us users over at White > Island are attempting to make a Gambas friendly OS to show case what > can be done with Gambas. It will be based off of Lubuntu 12.04 LTS > and have the Gambas runtime installed along with a

[Gambas-user] Gambas Friendly OS

2012-11-06 Thread John
For anyone who may be interested. A couple of us users over at White Island are attempting to make a Gambas friendly OS to show case what can be done with Gambas. It will be based off of Lubuntu 12.04 LTS and have the Gambas runtime installed along with apps/utils made with Gambas. It will be c

Re: [Gambas-user] Issue 351 in gambas: Program doesn't run from gambas IDE, it hangs on "gb.httpd"

2012-11-06 Thread gambas
Comment #4 on issue 351 by benoit.m...@gmail.com: Program doesn't run from gambas IDE, it hangs on "gb.httpd" http://code.google.com/p/gambas/issues/detail?id=351 Or use a stable version of Gambas 3! -- LogMeIn Centra

Re: [Gambas-user] Issue 351 in gambas: Program doesn't run from gambas IDE, it hangs on "gb.httpd"

2012-11-06 Thread gambas
Updates: Status: Accepted Comment #3 on issue 351 by benoit.m...@gmail.com: Program doesn't run from gambas IDE, it hangs on "gb.httpd" http://code.google.com/p/gambas/issues/detail?id=351 I will remove the automatic embedded http server, it was a test. Just wait for a few revisions..

Re: [Gambas-user] Issue 351 in gambas: Program doesn't run from gambas IDE, it hangs on "gb.httpd"

2012-11-06 Thread gambas
Comment #2 on issue 351 by uale...@gmail.com: Program doesn't run from gambas IDE, it hangs on "gb.httpd" http://code.google.com/p/gambas/issues/detail?id=351 Hmmm ... I am trying to get DomotiGa working with gambas3, but it uses the gb.web for it's internal webserver (this worked fine BEFORE

Re: [Gambas-user] Issue 351 in gambas: Program doesn't run from gambas IDE, it hangs on "gb.httpd"

2012-11-06 Thread gambas
Updates: Status: WontFix Comment #1 on issue 351 by benoit.m...@gmail.com: Program doesn't run from gambas IDE, it hangs on "gb.httpd" http://code.google.com/p/gambas/issues/detail?id=351 At the moment it's not a bug, it is a testing feature. :-) When you check the 'gb.web' component,

[Gambas-user] Issue 351 in gambas: Program doesn't run from gambas IDE, it hangs on "gb.httpd"

2012-11-06 Thread gambas
Status: New Owner: Labels: Version-TRUNK Type-Bug Priority-Medium OpSys-Any Dist-Ubuntu Arch-Any Desktop-Any GUI-Any New issue 351 by uale...@gmail.com: Program doesn't run from gambas IDE, it hangs on "gb.httpd" http://code.google.com/p/gambas/issues/detail?id=351 1) Describe the proble

Re: [Gambas-user] Using ComboBoxes

2012-11-06 Thread Fabien Bodard
Use a side collection. Dim aCol as Collection = ["AAA":1,"BBB":2,"CCC":3] Value = aCol[ComboBox1.Text] 2012/11/6 Bill-Lancaster > > If the data loaded into a ComboBox is random ie:; > > ComboBox1.Add("BBB") > ComboBox1.Add("AAA") > ComboBox1.Add("CCC") > And these string vales have associat

[Gambas-user] Using ComboBoxes

2012-11-06 Thread Bill-Lancaster
If the data loaded into a ComboBox is random ie:; ComboBox1.Add("BBB") ComboBox1.Add("AAA") ComboBox1.Add("CCC") And these string vales have associated values (perhaps a record Id), say 5,8,7 Then for convenience the ComboBox is sorted, how can the numeric values best be retrieved? I usually fin