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
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,
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
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
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
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
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
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
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:
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
--
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
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.):
12 matches
Mail list logo