Re: [Gambas-user] Get structure from extern function?

2014-07-05 Thread CJ
Thanks for the input Jussi! I don't know the language, but shouldn't Tripple := numberin * 3 be Tripple := numberin * 3;? That would seem consistent. Good catch! In this particular Pascal code it doesn't really matter since it's the one and only line of code in that function but it's now

Re: [Gambas-user] Gambas3 and ZeroMQ?

2014-07-05 Thread CJ
Seem interresting ! Yes, ZeroMQ looks usefull for lots of things. Haven't had a chance to look closer but I did find some simple examples for other BASIC dialects (Win32) that may come in handy... http://www.coastrd.com/download/ZMQExamples.zip Looks like the above examples are based on

Re: [Gambas-user] ERROR with vers. 6362

2014-07-05 Thread Ru Vuott
Yes, now it works. OK. bye Sab 5/7/14, Benoît Minisini gam...@users.sourceforge.net ha scritto: Oggetto: Re: [Gambas-user] ERROR with vers. 6362 A: mailing list for gambas users gambas-user@lists.sourceforge.net Data: Sabato 5 luglio 2014, 04:39

Re: [Gambas-user] Wishlist : gb.form.mdi ToolBar

2014-07-05 Thread Benoît Minisini
Le 25/06/2014 04:32, B Bruen a écrit : Is there any reason that the ToolBar control is constrained within gb.form.mdi? I use it consistently, without needing the other controls in gb.form.mdi and would really like to see it just within gb.form as a general control. Maybe gb4? regards

Re: [Gambas-user] Feature Request

2014-07-05 Thread Benoît Minisini
Le 24/06/2014 22:29, Stephen a écrit : When adding new modules, classes, or forms the ability to select pre-existing code is good, an improvement would be enabling multi-select of those items, eliminating the need to loop through the RightClick-New-[Module/Class/Form]-Existing-[Selection].

Re: [Gambas-user] Settings: how to get (unknown) Keys?

2014-07-05 Thread Benoît Minisini
Le 18/06/2014 15:08, wig a écrit : How the get the (unknown keys) from a Settings file? Terminology of Keys and Slot for the group of keys in a settings file taken from documentation; This gives the names of the slots: Dim SettingsToImport As New Settings(User.Home /

Re: [Gambas-user] Settings: how to get (unknown) Keys?

2014-07-05 Thread Benoît Minisini
Le 05/07/2014 14:47, Benoît Minisini a écrit : Le 18/06/2014 15:08, wig a écrit : How the get the (unknown keys) from a Settings file? Terminology of Keys and Slot for the group of keys in a settings file taken from documentation; This gives the names of the slots: Dim

[Gambas-user] String array - problem with val

2014-07-05 Thread kungfupanda
Hi, I've a problem with conversion of a string array in integer. I'm using gb.chart to create a line graph with a lot of element (more then 10.000 value). I read the value from a txt file and store all in a string[]. Now I'm trying to get every element of the string[] (with for each element

Re: [Gambas-user] creating gb.qt4.webkit pages using gb.markdown etc (quick question)

2014-07-05 Thread B Bruen
On Fri, 27 Jun 2014 23:15:14 -0600 Randall Morgan rmorga...@gmail.com wrote: I am not quit sure I understand what you mean the best way to build the how to form. I use a web editor like Dreamweaver, Aptana Studio, etc. to create template pages. These pages are stored in the project folder.

Re: [Gambas-user] Sorting gridviews

2014-07-05 Thread B Bruen
Hi Tobi, I too have implemented a similar approach to yours, but it is not what I was looking for. I am trying to implement a sort over multiple columns, like ORDER BY ColA ASC, ColC DESC, ColB ASC in an sql query. I just cannot get it right. In fact, I have now decided that the easiest way

Re: [Gambas-user] The Class keyword

2014-07-05 Thread B Bruen
Ah, now I get it! Thanks Tobi B On Fri, 27 Jun 2014 11:42:06 +0200 Tobias Boege tabo...@gmail.com wrote: On Fri, 27 Jun 2014, B Bruen wrote: As in : CLASS Identifier Declares to the compiler that Identifier can be used as a class name. I am unsure of what this keyword really

Re: [Gambas-user] RFC: How to identify vertices and edges in a Graph class?

2014-07-05 Thread B Bruen
On Fri, 4 Jul 2014 13:23:41 +0200 Tobias Boege tabo...@gmail.com wrote: Hi list, I'm currently (well, I'll try to continue with it tomorrow) implementing an abstract Graph class in gb.data. And by abstract, I mean that I will just specify the interface of Graph classes, so that concrete