[Gambas-user] extended Combobox (my one)

2014-05-29 Thread Charlie Reinl
Salut, I need an extended Combobox, no sorry I would like to have an extended Combobox, where I can add elements like .Add(Item AS String[,key AS Variant]), does anybody made that yet, and want to share ? -- Amicalement Charlie Salut, while waiting for Benoîts changes, I made me an extende

Re: [Gambas-user] extended Combobox

2014-05-27 Thread Rolf-Werner Eilert
Am 26.05.2014 11:50, schrieb Benoît Minisini: > Le 25/05/2014 23:48, Christof Thalhofer a écrit : >> Hi, >> >> Am 25.05.2014 21:12, schrieb Karl Reinl: >> >>> I need an extended Combobox, >>> no sorry I would like to have an extended Combobox, >>> where I can add elements like >>> .Add(Item AS St

Re: [Gambas-user] extended Combobox

2014-05-27 Thread Norbert Szenográdi
Solved: missing: TrayIcon1.Show line. Sevoir 2014-05-27 09:29 keltezéssel, Norbert Szenográdi írta: > Dear All, > > I have a problem. > So, how can I do trayicon with trayicon_menu under Debian Wheezy + > Gnome3? > This is worked under Gnome panel 2.x: > TrayIcon1.Picture = Picture.Load("xx.png"

Re: [Gambas-user] extended Combobox

2014-05-27 Thread Norbert Szenográdi
Dear All, I have a problem. So, how can I do trayicon with trayicon_menu under Debian Wheezy + Gnome3? This is worked under Gnome panel 2.x: TrayIcon1.Picture = Picture.Load("xx.png") Thanks, Sevoir 2014-05-26 22:03 keltezéssel, Matti írta: > +1 > That's exactly what I need. > I made a custom C

Re: [Gambas-user] extended Combobox

2014-05-26 Thread Matti
+1 That's exactly what I need. I made a custom ComboBox that allows searching and has a key - but if it would be implemented, it would be shurely better and faster. Am 25.05.2014 21:12, schrieb Karl Reinl: > Salut, > > I need an extended Combobox, > no sorry I would like to have an extended Combob

Re: [Gambas-user] extended Combobox

2014-05-26 Thread epost
I was looking for where to enable suggestions for the combobox just this other day. Now I see why I failed to find it :) You have my vote for such a usefeul feature for the Combobox! Regards - Erik -- The best possibl

Re: [Gambas-user] extended Combobox

2014-05-26 Thread Christof Thalhofer
Hi, Am 26.05.2014 16:52, schrieb Daniel Quintero: > I use this code (Obviously, without creating a custom combo): Cool Idea. Thank you. I'm trying to work with that Idea. Alles Gute Christof Thalhofer -- Dies ist keine Signatur --

Re: [Gambas-user] extended Combobox

2014-05-26 Thread Daniel Quintero
Yes, I only cut&paste from that message :D *_* *Lic. Daniel Quintero Rojas* *¡Saludos desde México!* On Mon, May 26, 2014 at 12:03 PM, Karl Reinl wrote: > Am Montag, den 26.05.2014, 09:52 -0500 schrieb Daniel Quintero: > > I use this code (Obviously, without

Re: [Gambas-user] extended Combobox

2014-05-26 Thread Karl Reinl
Am Montag, den 26.05.2014, 09:52 -0500 schrieb Daniel Quintero: > I use this code (Obviously, without creating a custom combo): > > ' aIDs is an array of Integers, and you can assing that array to a Variant > variable, > ' as is the case of the Tag property of the combobox. > > Public Sub LoadCom

Re: [Gambas-user] extended Combobox

2014-05-26 Thread Charlie Reinl
Am Montag, den 26.05.2014, 11:50 +0200 schrieb Benoît Minisini: > Le 25/05/2014 23:48, Christof Thalhofer a écrit : > > Hi, > > > > Am 25.05.2014 21:12, schrieb Karl Reinl: > > > >> I need an extended Combobox, > >> no sorry I would like to have an extended Combobox, > >> where I can add elements l

Re: [Gambas-user] extended Combobox

2014-05-26 Thread Daniel Quintero
I use this code (Obviously, without creating a custom combo): ' aIDs is an array of Integers, and you can assing that array to a Variant variable, ' as is the case of the Tag property of the combobox. Public Sub LoadCombo() Dim aIDs As New Integer[] Dim sQuery As New String cboSample.Clear

Re: [Gambas-user] extended Combobox

2014-05-26 Thread Christof Thalhofer
Am 26.05.2014 16:10, schrieb Jussi Lahtinen: > This seems to be bug (or lack of feature in GTK+). Combobox is searchable > with Qt4 but not with GTK+. Grmbl. Then I am too unexperienced ... I try to figure it out, I use QT4, but did not see it. Alles Gute Christof Thalhofer -- [x] nail here

Re: [Gambas-user] extended Combobox

2014-05-26 Thread Jussi Lahtinen
This seems to be bug (or lack of feature in GTK+). Combobox is searchable with Qt4 but not with GTK+. Jussi On Mon, May 26, 2014 at 1:57 PM, Christof Thalhofer wrote: > Am 26.05.2014 11:50, schrieb Benoît Minisini: > > > There is a "DataComboBox" in gb.db.form that does that more or less. But

Re: [Gambas-user] extended Combobox

2014-05-26 Thread Christof Thalhofer
Am 26.05.2014 11:50, schrieb Benoît Minisini: > There is a "DataComboBox" in gb.db.form that does that more or less. But > I admit there is no a "ComboBox with a key". > > Maybe I should implement it, as many lazy :-) old VB users ask for that. I did not program VB but VBA (used MS Access as db

Re: [Gambas-user] extended Combobox

2014-05-26 Thread Benoît Minisini
Le 25/05/2014 23:48, Christof Thalhofer a écrit : > Hi, > > Am 25.05.2014 21:12, schrieb Karl Reinl: > >> I need an extended Combobox, >> no sorry I would like to have an extended Combobox, >> where I can add elements like >> .Add(Item AS String[,key AS Variant]), >> does anybody made that yet, and

Re: [Gambas-user] extended Combobox

2014-05-25 Thread Christof Thalhofer
Hi, Am 25.05.2014 21:12, schrieb Karl Reinl: > I need an extended Combobox, > no sorry I would like to have an extended Combobox, > where I can add elements like > .Add(Item AS String[,key AS Variant]), > does anybody made that yet, and want to share ? Funny. I started working with Gambas a w

[Gambas-user] extended Combobox

2014-05-25 Thread Karl Reinl
Salut, I need an extended Combobox, no sorry I would like to have an extended Combobox, where I can add elements like .Add(Item AS String[,key AS Variant]), does anybody made that yet, and want to share ? -- Amicalement Charlie ---