[Gambas-user] CheckBox Group property for created Checkbox

2012-04-29 Thread Ian Roper
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

Re: [Gambas-user] CheckBox Group property for created Checkbox

2012-04-29 Thread Benoît Minisini
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

[Gambas-user] Gambas for Android

2012-04-29 Thread John Rose
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. --

[Gambas-user] RaspberryPi

2012-04-29 Thread John Rose
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

[Gambas-user] Using qsort with Objects

2012-04-29 Thread tobi
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

[Gambas-user] Impossible enlarging a column in gridview... ?

2012-04-29 Thread Ru Vuott
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

Re: [Gambas-user] Issue 152 in gambas: Minor bug with help texts.

2012-04-29 Thread Jussi Lahtinen
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. > > > > -

[Gambas-user] XML problem

2012-04-29 Thread l k
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?

Re: [Gambas-user] XML problem

2012-04-29 Thread Adrien Prokopowicz
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? > > -

Re: [Gambas-user] XML problem

2012-04-29 Thread LeszekK
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

Re: [Gambas-user] XML problem

2012-04-29 Thread Adrien Prokopowicz
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

Re: [Gambas-user] XML problem

2012-04-29 Thread LeszekK
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

Re: [Gambas-user] gb3: incorrect solution to If...Then condition

2012-04-29 Thread Kevin Fishburne
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 > ,"#.###

[Gambas-user] Gambas & GStreamer

2012-04-29 Thread Benoît Minisini
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