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 2

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 ha scritto: Oggetto: Re: [Gambas-user] ERROR with vers. 6362 A: "mailing list for gambas users" Data: Sabato 5 luglio 2014, 04:39 Le 05/07/2014 02:35, Ru Vuott a écrit : > Hello, > >

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? > > reg

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->[Selec

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: >> >>

[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 in

Re: [Gambas-user] String array - problem with val

2014-07-05 Thread Tobias Boege
On Sat, 05 Jul 2014, kungfupanda wrote: > 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

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

2014-07-05 Thread B Bruen
On Sat, 05 Jul 2014 14:21:51 +0200 Benoît Minisini wrote: > 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 s

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 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. I then load the

Re: [Gambas-user] IDE Feature Request

2014-07-05 Thread B Bruen
On Mon, 16 Jun 2014 17:36:43 +0200 Benoît Minisini wrote: > Le 16/06/2014 00:52, B Bruen a écrit : > > ( Don't see why I shouldn't join in :-) ) > > > > Would it be possible to lock source files the same as for forms? This > > would prevent me from changing the wrong class in a set of very > > s

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 wa

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 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 achiev

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 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 implementation

Re: [Gambas-user] sdl mouse

2014-07-05 Thread Shane
Thanks Benoit that works really well as for a name maybe "Capture" On 03/07/14 18:33, Benoît Minisini wrote: > Le 16/06/2014 15:25, Shane a écrit : >> hi benoit would it be possible to include the ability to keep the mouse >> within the bounds of the sdl window >> >> thanks Shane >> > I have added

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

2014-07-05 Thread CJ
> You would help by using "gdb" to get the stack backtrace of > the crash. Thats probably a better start. Attached is result from gdb running "libtest2"... > Or better using "valgrind" to get more details. I have no experience with that but will install and read up on it later if needed, let me