[Gambas-user] Interpreter's treatment of classes

2014-04-10 Thread Bruno Félix Rezende Ribeiro
Hello Gambas users and developers! I've been studying Gambas for almost a week and a half and I'm very impressed with the simplicity and elegance of Gambas' object oriented Basic language implementation. Congratulations to all developers, specially Benoît Minisini. What a superb software develop

Re: [Gambas-user] How editing more than 1024 bytes in a field of the DataBrowser

2014-04-10 Thread Benoît Minisini
Le 11/04/2014 01:20, Ru Vuott a écrit : > Hello Benoît, > > finally our friend replied, and sent its project (which I am attaching > here). > He explains: > start the program, the menu "Impostazioni" -> "tabelle varie" -> "testi a > scelta", click on "sblocca", choose the row, for example,

Re: [Gambas-user] How to set name of control

2014-04-10 Thread Jussi Lahtinen
If the textboxes are already existing, then I think you should put them into some container or collection. Example, in container: Dim hTextBox As TextBox For Each hTextBox In ToolPanel1.Children 'or hMyCollection Next You can identify the boxes with Tag, Name, or whatever. Jussi

Re: [Gambas-user] How to set name of control

2014-04-10 Thread Jussi Lahtinen
What are you trying to achieve? Dim hTextBoxes As New TextBox[10] For ii = 1 To 3 hTextBoxes[ii] = New TextBox(Me) As "Textbox" & CStr(ii) Next There is also Name property if you want to change name of existing textbox... Jussi On Thu, Apr 10, 2014 at 11:58 PM, abbat81 wrote: > > How to

Re: [Gambas-user] Issue 519 in gambas: allocations non freed when no obvious cross references

2014-04-10 Thread gambas
Updates: Status: Fixed Comment #3 on issue 519 by benoit.m...@gmail.com: allocations non freed when no obvious cross references http://code.google.com/p/gambas/issues/detail?id=519 (No comment was entered for this change.) -- You received this message because this project is configure

Re: [Gambas-user] Issue 519 in gambas: allocations non freed when no obvious cross references

2014-04-10 Thread gambas
Comment #2 on issue 519 by benoit.m...@gmail.com: allocations non freed when no obvious cross references http://code.google.com/p/gambas/issues/detail?id=519 Fixed in revision #6241. -- You received this message because this project is configured to send all issue notifications to this addr

Re: [Gambas-user] Issue 519 in gambas: allocations non freed when no obvious cross references

2014-04-10 Thread gambas
Updates: Status: Accepted Labels: -Version Version-3.5.0 Comment #1 on issue 519 by benoit.m...@gmail.com: allocations non freed when no obvious cross references http://code.google.com/p/gambas/issues/detail?id=519 (No comment was entered for this change.) -- You received this

[Gambas-user] How to set name of control

2014-04-10 Thread abbat81
How to do this: Dim i as integer For i = 1 to 3 Textbox[i].Text = i ' Textbox1.Text, Textbox2.Text and Textbox3.Text Next Thanks -- View this message in context: http://gambas.8142.n7.nabble.com/How-to-set-name-of-control-tp46134.html Sent from the gambas-user mailing list archive at N

[Gambas-user] Issue 519 in gambas: allocations non freed when no obvious cross references

2014-04-10 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 519 by fabianfl...@gmail.com: allocations non freed when no obvious cross references http://code.google.com/p/gambas/issues/detail?id=519 1) The warning: "warning: gbx3:

[Gambas-user] About TextEdit defaults...

2014-04-10 Thread Jorge Carrión
Hi It's possible to change the default style of TextEdit. I mean that when you just pulse Enter key the rich text produced is something like this: I like to change the text-indent:0px value by default... It's possible? Regards --

Re: [Gambas-user] Precision immediately lost when assigning value to type Single structure property

2014-04-10 Thread Jussi Lahtinen
That is completely expected just try: Print csingle(180.2) 180,169 You cannot express 180.2 precisely with 32 bits. Even with 64 bits it's something like: 180.188631 ... Jussi On Thu, Apr 10, 2014 at 7:43 AM, Kevin Fishburne < kevinfishbu...@eightvirtues.com> wrote: > I have

Re: [Gambas-user] Precision immediately lost when assigning value to type Single structure property

2014-04-10 Thread Fabien Bodard
Or store the value as integer an then divide by 10 on use Le 10 avr. 2014 07:09, "Ian Haywood" a écrit : > On Thu, Apr 10, 2014 at 2:43 PM, Kevin Fishburne > wrote: > > I have an array (Plan) of a structure (PlanStructure) which contains > > several other structures (PlanPortalStructure, etc.):