Re: [Gambas-user] A strategical move for two communities: Gambas and The GNU Project

2014-05-14 Thread Bruno Félix Rezende Ribeiro
Em Tue, 13 May 2014 23:30:05 +0200 Benoît Minisini escreveu: > Tobias has a point there. > > If becoming a GNU project means that the code must be rewritten to > follow the GNU's C notation standard, then I can't agree. I don't > have the time to do that. > > Not that I am against standard, bu

Re: [Gambas-user] JIT problem

2014-05-14 Thread Roki
Hi Jussi! If you find a solution to this problem, please Share with us. I have the same problem too. On 05/13/2014 01:53 PM, Jussi Lahtinen wrote: > I get following error message: > "Stack became corrupted in a JIT function. Please make a bug report." > > This seems to be cause by optional argumen

Re: [Gambas-user] JIT problem

2014-05-14 Thread Emil Lenngren
Can someone print a gambas disassembly of a gambas file (and source code) where this happens? gbc -v File.class will compile the file and print the disassembly if I remember correctly. 2014-05-14 15:50 GMT+02:00 Roki : > Hi Jussi! If you find a solution to this problem, please Share with us. > I

Re: [Gambas-user] JIT problem

2014-05-14 Thread Benoît Minisini
Le 14/05/2014 15:54, Emil Lenngren a écrit : > Can someone print a gambas disassembly of a gambas file (and source code) > where this happens? > gbc -v File.class > will compile the file and print the disassembly if I remember correctly. > I think that the crash comes form the implementation of th

Re: [Gambas-user] My appreciation and thanks

2014-05-14 Thread Jb Skaggs
Hi Randall, I don't have any of the ones I'd made in the past but here are the ones I plan completing soon: Discipleworks: A student checkin / check out system, with progress tracking, milestones, attendence, incident reports, and email notifications. Basically a tool for pastors, teachers, outr

Re: [Gambas-user] JIT problem

2014-05-14 Thread Emil Lenngren
I'm not sure, but isn't it enough to check whether the type is T_VOID? Or is the problem that they are overwritten by a default value for the argument type? If so, why not simply allocate a control variable of type T_LONG? Then it won't break anythihng with the JIT compiler. 2014-05-14 16:03 GMT+

Re: [Gambas-user] JIT problem

2014-05-14 Thread Roki
Hi guys! This is my simple project I put in attachment. It is a program without optional parameter, and again the same error appears when I want to show a report preview. On 05/14/2014 04:03 PM, Benoît Minisini wrote: Le 14/05/2014 15:54, Emil Lenngren a écrit : Can someone print a gambas d

[Gambas-user] Could someone give me a brief explanation of parents and kids in this example

2014-05-14 Thread Jb Skaggs
In the treeview example I would like to understand the parent and kids aspects: Public Sub Button1_Click() Dim sIcon As String Dim sParent As String If Textbox1.Text <> Null Then If RadioButton1.Value Then sIcon = "Male.png" Else sIcon = "Female.png" End If 'Get

Re: [Gambas-user] Could someone give me a brief explanation of parents and kids in this example

2014-05-14 Thread Rolf-Werner Eilert
Am 14.05.2014 17:57, schrieb Jb Skaggs: > In the treeview example I would like to understand the parent and kids > aspects: > > Public Sub Button1_Click() > >Dim sIcon As String >Dim sParent As String > >If Textbox1.Text <> Null Then > If RadioButton1.Value Then >sIcon =

[Gambas-user] Feature request: Giving _compare() an optional user data argument

2014-05-14 Thread Tobias Boege
Hi Benoit, when we wanted to sort a 2d array (table) by a specific column, variable at runtime, we did the following: 1. Create the class, let's call it "Record", to represent the table records which implements a _compare() method and has a SortField property which indicates to _compare(

[Gambas-user] gb.desktop.x11

2014-05-14 Thread herberth guzman
Hi Beno?t Thank you very much for your support and for new component gb.desktop.x11 I settled Gambas3 review # 6261 Change the code a bit mypanel for example: _Desktop.MinimizeWindow(id_win_active, 1) = X11.MinimizeWindow(id_win_active, 1) Truth no understand how to use it to implement gb.deskt

Re: [Gambas-user] Could someone give me a brief explanation of parents and kids in this example

2014-05-14 Thread Jb Skaggs
So a child is a subcategory of a parent in treeview then? On Wed, May 14, 2014 at 11:35 AM, Rolf-Werner Eilert wrote: > > > Am 14.05.2014 17:57, schrieb Jb Skaggs: >> In the treeview example I would like to understand the parent and kids >> aspects: >> >> Public Sub Button1_Click() >> >>Dim

[Gambas-user] Segfault when trying to debug stack overflow

2014-05-14 Thread Tobias Boege
Hi Benoit, simple issue this time (I think). When my program produces a stack overflow and I try to get the value of an argument to the overflowing stack frame, using the IDE debugging facilities, "it" (the interpreter?) segfaults. Run the attached project and when the stack is overflowed, select

Re: [Gambas-user] Segfault when trying to debug stack overflow

2014-05-14 Thread Benoît Minisini
Le 14/05/2014 23:22, Tobias Boege a écrit : > Hi Benoit, > > simple issue this time (I think). When my program produces a stack overflow > and I try to get the value of an argument to the overflowing stack frame, > using the IDE debugging facilities, "it" (the interpreter?) segfaults. > > Run the a

Re: [Gambas-user] gb.desktop.x11

2014-05-14 Thread Benoît Minisini
Le 14/05/2014 22:06, herberth guzman a écrit : > Hi > Beno?t > > Thank you very much for your support and for new component gb.desktop.x11 > I settled Gambas3 review # 6261 > > Change the code a bit mypanel for example: > > _Desktop.MinimizeWindow(id_win_active, 1) = > X11.MinimizeWindow(id_win_act

Re: [Gambas-user] Could someone give me a brief explanation of parents and kids in this example

2014-05-14 Thread B Bruen
On Wed, 14 May 2014 10:57:58 -0500 Jb Skaggs wrote: > In the treeview example I would like to understand the parent and kids > aspects: > > Public Sub Button1_Click() > > Dim sIcon As String > Dim sParent As String > > If Textbox1.Text <> Null Then > If RadioButton1.Value Then >

Re: [Gambas-user] Feature request: Giving _compare() an optional user data argument

2014-05-14 Thread B Bruen
On Wed, 14 May 2014 21:38:33 +0200 Tobias Boege wrote: > Hi Benoit, > > when we wanted to sort a 2d array (table) by a specific column, variable at > runtime, we did the following: > > 1. Create the class, let's call it "Record", to represent the table > records which implements a _compare

Re: [Gambas-user] A strategical move for two communities: Gambas and The GNU Project

2014-05-14 Thread Bruno Félix Rezende Ribeiro
Em Tue, 13 May 2014 23:30:05 +0200 Benoît Minisini escreveu: > If becoming a GNU project means that the code must be rewritten to > follow the GNU's C notation standard, then I can't agree. I don't > have the time to do that. I've contacted the GNU evaluation team about this issue and they told