Re: [Gambas-user] New component gb.rss to generate and parse RSS documents

2017-04-18 Thread Tobias Boege
On Sun, 16 Apr 2017, Benoît Minisini wrote: > Le 02/04/2017 à 18:07, Tobias Boege a écrit : > > > > * The date conversion routines ignore timezones completely, because > > I have no clue about working with timezones in Gambas. > > > > Hi, Tobias. > > I have added in revision #8122 two

Re: [Gambas-user] New component gb.rss to generate and parse RSS documents

2017-04-18 Thread Benoît Minisini
Le 18/04/2017 à 19:44, Tobias Boege a écrit : > On Sun, 16 Apr 2017, Benoît Minisini wrote: >> Le 02/04/2017 à 18:07, Tobias Boege a écrit : >>> >>> * The date conversion routines ignore timezones completely, because >>> I have no clue about working with timezones in Gambas. >>> >> >> Hi,

Re: [Gambas-user] New component gb.rss to generate and parse RSS documents

2017-04-18 Thread Tobias Boege
On Tue, 18 Apr 2017, Benoît Minisini wrote: > > About the incorporation of timezones in gb.web.feed (the last thing before > > I mark the component as "Unfinished but stable"), my plan is to replace the > > Date variables in the Rss* classes by an RssDate compound, consisting of a > > normalised

[Gambas-user] Polynomiale Least Square

2017-04-18 Thread cheikh diabang
Hello. I would like to write gambas code which determines the polynomial of a set of x, y coordinates. Is there anyone who has used it to help me please. -- Check out the vibrant tech community on one of the world's most

Re: [Gambas-user] TextLabel

2017-04-18 Thread Pino Zollo
El 18/04/17 a las 06:07, gambas-user-requ...@lists.sourceforge.net escribió: > Does the documentation [1] answer your question? Yes, it does... Thank you Tobi -- Check out the vibrant tech community on one of the

Re: [Gambas-user] Polynomiale Least Square

2017-04-18 Thread cheikh diabang
Thank you Tobias. I've seen the explanation, I'm going. Next time De : Tobias Boege Envoyé : mardi 18 avril 2017 09:55 À : mailing list for gambas users Objet : Re: [Gambas-user] Polynomiale Least Square On Tue, 18 Apr 2017, cheikh diabang

Re: [Gambas-user] New component gb.rss to generate and parse RSS documents

2017-04-18 Thread Benoît Minisini
Le 18/04/2017 à 19:52, Benoît Minisini a écrit : > Le 18/04/2017 à 19:44, Tobias Boege a écrit : >> On Sun, 16 Apr 2017, Benoît Minisini wrote: >>> Le 02/04/2017 à 18:07, Tobias Boege a écrit : * The date conversion routines ignore timezones completely, because I have no clue

[Gambas-user] [Gambas Bug Tracker] Bug #1096: MDI toolbuttons with long text

2017-04-18 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1096=L21haW4- Bruce BRUEN reported a new bug. Summary --- MDI toolbuttons with long text Type : Bug Priority : High Gambas version : 3.9.90 (TRUNK) Product : QT4 component Description --- I really

[Gambas-user] [Gambas Bug Tracker] Bug #1096: MDI toolbuttons with long text

2017-04-18 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.1096=L21haW4- Bruce BRUEN added an attachment: texttbs-0.0.2.tar.gz -- Check out the vibrant tech community on one of the world's most engaging tech sites,

Re: [Gambas-user] Polynomiale Least Square

2017-04-18 Thread Tobias Boege
On Tue, 18 Apr 2017, cheikh diabang wrote: > Hello. I would like to write gambas code which determines the polynomial of a > set of x, y coordinates. Is there anyone who has used it to help me please. If your polynomial has real or complex coefficients you can use gb.gsl's [1] Polynomial class.

[Gambas-user] How to dynamically add & populate variable number of tabs at runtime?

2017-04-18 Thread T Lee Davidson
Hello Folks, I have been trying to figure out how to, at runtime, create a variable number of new tabs in a TabStrip, populate those tabs with Controls, and then be able to reference those controls, all dynamically. There seems to be little information available as to how to 1) dynamically

Re: [Gambas-user] New component gb.rss to generate and parse RSS documents

2017-04-18 Thread Benoît Minisini
I have took a look at your code. Just a general remark: the name of the exported function arguments should help the user to guess what it means. So, for example: Static Public Function FormatDate(Dat As Date) As String should be: Static Public Function FormatDate({Date} As Date) As String

Re: [Gambas-user] How to dynamically add & populate variable number of tabs at runtime?

2017-04-18 Thread Matti
Hi Lee, first of all, you have to give the GridView a X, Y, width and height. Otherwise it's there but doesn't show. To reference the GridViews, create an array of them and address them as GridView[0], GridView[1] and so on. The [i] is the number of the TabStrip index. Here is an example of