Greetings all,
If you create a new checkbox as a child of an existing control
Dim MyCheckbox as Checkbox
Checkbox = New checkbox(MyScrollView) as "MyCheckboxName" &
Str(RecordId)
Checkbox.Group = "MyCheckBoxGroup" is not valid.
The Group property is not visible in the list of available pro
Le 29/04/2012 09:17, Ian Roper a écrit :
> Greetings all,
>
> If you create a new checkbox as a child of an existing control
>
> Dim MyCheckbox as Checkbox
>
> Checkbox = New checkbox(MyScrollView) as "MyCheckboxName"&
> Str(RecordId)
'"MyCheckboxName" & Str(RecordId)' is actually the Group pr
Basic4android now working properly (i.e. bug fixed that prevented code
being shown for existing project) under wine 1.5.2. I'll post further
(if people say they're interested) when I finish (though I haven't yet
started) the project that I have in mind.
--
I've been looking at RaspberryPi. Personally, I don't want to use
Fedora. So installing Debian for Armel on the RaspberryPi looks good, as
current Ubuntu for Arm (apparently have to use 9.04 or earlier)
supposedly does not support this processor. So I presume that dev of a
Gambas3 app could be done
Hi,
I want to sort an Array of Arrays as Variant[][] that may contain different
datatypes in each member
of an array but the arrays are all homogenous (think of a Database, it's not
the actual subject but
the same idea). That's what I thought of:
- Write a class that Inherits Variant[] (that wi
Hello,
from our italian Gambas forum (www.gambas-it.org/smf/) someone points out thet
GridView has a problem: if you create a grid and set it for example to 4
columns; then during the execution of the program see it so that it increases
the number of columns.
Resizing the column 4 will see that
Confirmed, thanks!
Jussi
On Sun, Apr 29, 2012 at 03:24, wrote:
> Updates:
>Status: Fixed
>
> Comment #6 on issue 152 by benoit.m...@gmail.com: Minor bug with help
> texts.
> http://code.google.com/p/gambas/issues/detail?id=152
>
> Finally fixed in revision #4689.
>
>
>
> -
Hi, I have a problem with read the value of the xml file. With this data:
I do not know how to read value.
With this data:
2012-04-29T14: 54:31 Z I have no problem with that.
Can anyone give me some advices how to solve this?
Le dimanche 29 avril 2012 17:15:16 l k a écrit :
> Hi, I have a problem with read the value of the xml file. With this data:
>
> I do not know how to read value.
>
> With this data:
> 2012-04-29T14: 54:31 Z I have no problem with that.
> Can anyone give me some advices how to solve this?
>
> -
xml_r = New XmlReader
Dialog.OpenFile
Try xml_r.Open(Dialog.Path)
Repeat
If xml_r.Eof Then Break
xml_r.Read()
ListBox1.Add(xml_r.Node.Name)
ListBox1.Add(xml_r.Node.Value)
Wait 0.1
Until xml_r.Eof
xml_r.Close
The code works correctly, but does not read the
Le dimanche 29 avril 2012 18:00:11 LeszekK a écrit :
> xml_r = New XmlReader
>Dialog.OpenFile
>
>Try xml_r.Open(Dialog.Path)
>
>Repeat
> If xml_r.Eof Then Break
> xml_r.Read()
> ListBox1.Add(xml_r.Node.Name)
> ListBox1.Add(xml_r.Node.Value)
> Wait 0.1
>Unt
Your code not work.
This code work:
For Each xml_r.Node.Attributes
If xml_r.Node.Name = "lat" Then ListBox1.Add("lat: " & xml_r.Node.Value)
If xml_r.Node.Name = "lon" Then ListBox1.Add("lon: " & xml_r.Node.Value)
Next
Thanks for your help and guidance.
2012/4/29 Adrien Prokopowicz
On 04/27/2012 07:24 PM, Jussi Lahtinen wrote:
> At least the problem is unrelated to sin and cos...
>
> ? format(0.47942553860420300027 ^ 2 -
> 0.22984884706593014129,"#.##")
> - .0012212453
>
> ? format(0.47942553860420300027 ^ 2.0 - 0.22984884706593014129
> ,"#.###
Hi,
I have started a new multimedia component based on GStreamer in revision
#4693.
It is far from being complete, but you can use it to play, pause, seek
any audio or video media handled by GStreamer.
Here is a little test program used for testing the component.
Enjoy, and feel free to co
14 matches
Mail list logo