Re: [Gambas-user] Workspace and object .Visible property

2009-12-10 Thread D. L. Fox
Someone will correct me if I'm wrong. Technically, the component itself is still visible. You just can't see it because the tab to which it belongs is hidden. If you need to know its visibility in that scenario, I guess you will have to check to see if its tab is the currently selected tab. Ro

Re: [Gambas-user] Component Show, Hide, Visible

2009-12-02 Thread D. L. Fox
Okay, I was thinking it was that way but wondered if I was missing something "under the hood". Thanks. Kadaitcha Man wrote: > 2009/12/2 D. L. Fox : >> Sorry for the newbie question but... >> >> What is the difference between setting the Visible property to False a

[Gambas-user] Component Show, Hide, Visible

2009-12-01 Thread D. L. Fox
Sorry for the newbie question but... What is the difference between setting the Visible property to False and calling the Hide() method? -- Join us December 9, 2009 for the Red Hat Virtual Experience, a free event focuse

Re: [Gambas-user] Custom Control

2009-11-29 Thread D. L. Fox
I apologize if I gave you the wrong impression. I didn't intend for you to change anything. I was just wondering if it could already be done and I was missing it. I really like Gambas and have been enjoying the learning experience. Thanks for creating it. Benoît Minisini wrote: > You get a poi

Re: [Gambas-user] Custom Control

2009-11-29 Thread D. L. Fox
Benoît Minisini wrote: > In Gambas 3, the /control directory must be put inside the "Project" section. Okay, that worked. I was using the control directory automatically created when I first created the project. Thanks. > Please provide the details of what you have done, and maybe I will tell yo

Re: [Gambas-user] Custom Control

2009-11-29 Thread D. L. Fox
Kadaitcha Man wrote: > You don't need to know C. Simply inherit the control in > Gambas code then wrap your methods and properties around it. DOH! I should have thought of that. Thanks! Either I've found a bug, or I'm not doing something right. The doc says: "To provide the icons of your comp

[Gambas-user] Custom Control

2009-11-28 Thread D. L. Fox
I've been messing with creating a custom control in Gambas3. I've read the documentation at: http://gambasdoc.org/help/dev/gambas I've looked at some of the source code for FileView and other components. I've even made my first one but it needs improving. Is there any other documentation someo

Re: [Gambas-user] Menu editor - not a bug but annoying

2009-11-28 Thread D. L. Fox
...and while you're on the subject of Gambas3 revisions: How often is it revised? I haven't updated since I first installed it. Benoît Minisini wrote: > The same thing for Gambas 3 will follow in a next revision. -- Let

Re: [Gambas-user] rpmbuild and install package

2009-11-26 Thread D. L. Fox
Thanks for the info, Doriano. That's good to know if I ever need to develop something for Slackware. Toni, it's not a big deal and I appreciate the help. I'm just playing around right now getting familiar with the IDE, and so forth. It's been awhile since I've programmed in Basic. Toni Rosa wr

Re: [Gambas-user] rpmbuild and install package

2009-11-25 Thread D. L. Fox
Toni, you are 2 for 2! :-) Added the link and now I have access to creating all the available packages. Many thanks! Toni wrote: > Hi again, > I think that there is no real need for that specific version of tar... > thus a workaround to generate packages for Slackware without having to > downg

Re: [Gambas-user] rpmbuild and install package

2009-11-25 Thread D. L. Fox
Yep, that did the trick. Thanks, Toni. By the way, I was mistaken about the error given for the Slackware package. It says "tar 1.13 is missing". I think I recall reading somewhere that I would have to downgrade the version of tar that comes on the machine but I'm not going to worry about it. I

[Gambas-user] rpmbuild and install package

2009-11-25 Thread D. L. Fox
Howdy, everyone. I've been using Gambas for about a month but only joined the list about a week ago. I've really enjoyed playing around with Gambas. I used Windows (as well as Linux) and was a VB programmer (among other languages) for years until I finally couldn't take it anymore and ditched

Re: [Gambas-user] Columnview, how to read?

2008-08-26 Thread Fox
Werner wrote: > It is true, understanding a ColumnView is not so easy. There are so > many parameters. > I have included a mockup JukeBox application with 2 columnviews where > data is copied between 2 columnviews; sorting and a few other things. > Maybe it helps. > > Especially, the subroutine

Re: [Gambas-user] Columnview, how to read?

2008-08-26 Thread Fox
Jacky wrote: > Le Tuesday 26 August 2008 13:45:36 Fox, vous avez écrit : > >> Jacky wrote: >> >>> Columnview.MoveFirst >>> REPEAT >>> Columnview.Item.Selected = TRUE >>> 'here that you want to do with each data, Columnv

Re: [Gambas-user] Columnview, how to read?

2008-08-26 Thread Fox
Jacky wrote: > > > Columnview.MoveFirst > REPEAT > Columnview.Item.Selected = TRUE > 'here that you want to do with each data, Columnview.Item[1], > Columnview.Item[2], Columnview.item[3] etc... > > UNTIL Columnview.Movenext() > Movenext is not documented,(it exist?) bu

Re: [Gambas-user] Columnview, how to read?

2008-08-26 Thread Fox
Werner wrote: > to traverse trough the items of a ColumnView you could do this: > CVmycv.MoveFirst > WHILE CVmycv.Available > Print CVmycv.Item.Key 'or whatever else you want to do here > CVmycv.MoveNext > WEND > > > but I don't understand what you actually want to do. > Suppose that I have

Re: [Gambas-user] Columnview, how to read?

2008-08-26 Thread Fox
Fox wrote: > ... > > CVmycv.MoveFirst > FOR i = 0 TO CVmycv.Count - 1 > > S_0 = CVmycv.Item[0] > S_1 = CVmycv.Item[1] > S_2 = CVmycv.Item[2] > S_3 = CVmycv.Item[3] > S_4 = CVmycv.Item[4] > S_5 = CVmycv.Item[5] > FMain

[Gambas-user] Columnview - how to read?

2008-08-26 Thread Fox
I'm sorry but I'm getting crazy with a Columnview I can add items without any problem But now I want to store data so I must read from Columnview and manage the data. ... CVmycv.MoveFirst FOR i = 0 TO CVmycv.Count - 1 S_0 = CVmycv.Item[0] S_1 = CVmycv.Item[1] S_

[Gambas-user] Columnview, how to read?

2008-08-26 Thread Fox
I'm sorry but I'm getting crazy with a Columnview I can add items without any problem But now I want to store data so I must read from Columnview and manage the data. ... CVmycv.MoveFirst FOR i = 0 TO CVmycv.Count - 1 S_0 = CVmycv.Item[0] S_1 = CVmycv.Item[1] S_2 = CVmycv.It

[Gambas-user] about combobox

2008-08-26 Thread Fox
About combobox, we are talking about this control a little time ago. There is a big difference from QT and GTK combobox. Gtk combobox have trouble to manage long lists, try to fill with many items, it make load for time and also you have trouble to search what you need. QT combobox is not fast,

Re: [Gambas-user] Sendmail tool and Gambas2

2008-07-16 Thread Fox
Nx GT-R BOY wrote: > Hi, As part of my development in Gambas2 I am making a feature in my > software that remains people a to-do list daily via email. > > So far I am working with sendmail, but If you know a better alternative > would be appreciated. > > I use "sendEmail" is simple and fast, it

Re: [Gambas-user] ComboBox with autocomplete?

2008-07-16 Thread Fox
Benoit Minisini wrote: > OK, this is not what I name "autocomplete"! > my fault, sorry :) > Do you use gb.qt or gb.gtk? In gb.qt, the combobox didn't change, so I would > find strange that its behaviour is not the same anymore. > > I use gb.qt, but the funny thing is that: software writed f

Re: [Gambas-user] ComboBox with autocomplete?

2008-07-16 Thread Fox
Benoit Minisini wrote: > > > ComboBox never had any autocomplete function. This must be implemented "by > hand". If someone does that in a clean way, it would be welcome and put in a > component! > > *hum...* well... I assure you about that... or maybe I give a wrong mean to "autocomplete fun

Re: [Gambas-user] ComboBox with autocomplete?

2008-07-16 Thread Fox
Rolf-Werner Eilert wrote: > Does the ComboBox have an autocomplete function (partially taking the > next best fitting item from the list and proposing it)? If yes, how can > I activate it? > > I don't know :( In the old version (1.9.92 ) it works I search also in changelogs but i didn't find n