Re: [Gambas-user] CheckBox_MouseUp huge PB

2009-08-24 Thread Doriano Blengino
Benoît Minisini ha scritto:
 Benoît Minisini a écrit :
 
 Fabien Bodard a écrit :
 
 it seem that the click event is send after the .value setting... but
 the MouseUp before.

 why did you not use the click event ?
   
 I don't use it because it is raised after the .Value has changed and I
 need to be able to forbid any change in some conditions.
 
 - You can't assume any relationship between Mouse events and the Click
 event raised when the value has changed.
   
 That's NOW obvious, but not @ first glance and without a test to see
 exactly which order is given to events.

 

 And because you can raise the Click event by code, or by using only the 
 keyboard.

   
 - If the checkbox should not be changed, then it must be disabled before
 the user tries to change it.
   
 That doesn't prevent MouseDown/Up etc events to be raised 
 

 Why should it?
   
This affirmation seems strange to me. A disabled control should not 
raise events... why should it? What is the purpose of disabling a 
control? I think it is to make it read-only - so the user can not 
interact with it. Anyway, if I remember well, there is another way to 
prevent control to raise events: lock(), right?

And here I remember another thing: most toolkit raise click, changed, 
and so on when something in a control is changed by code  and not by 
user. I think this is stupid. If the program changes something in the 
control, the very same code can take appropriate actions, so there is no 
need to use events for that. But normally events are raised in such 
situations, and one must use added code to ignore events, and so on. 
What is happening to Jean-Yves is one example; another one it's from me; 
I am using GTK to write an IDE. I take a gtk_text_view and load into it 
a file to be edited. The flag changed becomes true, and an event is 
fired. But the file is not changed - it has just been readed from disk! 
And there are many more. In the Gambas sources of DirTreeView there are 
tricks like bIgnore and lock() and so on. This way code gets more 
obfuscated instead of being more clear and straight.

Regards,
Doriano

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] How to set a slider value?

2009-08-24 Thread Aleksandrs Livshics
Dear Gambas users,
I am new to Gambas and my question may be silly,
however I cannot find how to set a slider value in the 
code. (Not the initial value, this is easy)
I want to specify some event (like double click on a slider)
to force it to jump to a predefined position/value.

If I write Dbl_click() method and use something like 
My_slider.value = The_value
in it, then slider on screen does not move from where
I have set it previously with a mouse. More precisely, 
It jumps to a position which corresponds to The_value
and back to where it was before!
Any ideas would be helpful.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] New feature in Gambas 3 IDE

2009-08-24 Thread Benoît Minisini
Hi,

In Gambas 3 IDE, you can now modify the contents of local variables, global 
variables, and any field in debugger watch windows. While debugging of 
course...

This feature is fresh, so you may have crashes!

Regards,

-- 
Benoît

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] How to set a slider value?

2009-08-24 Thread Joshua Higgins
Using the Slider's _menu event, for right click, instead of _DblClick works
as expected.

2009/8/24 Aleksandrs Livshics alek...@mpe.lv

 Dear Gambas users,
 I am new to Gambas and my question may be silly,
 however I cannot find how to set a slider value in the
 code. (Not the initial value, this is easy)
 I want to specify some event (like double click on a slider)
 to force it to jump to a predefined position/value.

 If I write Dbl_click() method and use something like
 My_slider.value = The_value
 in it, then slider on screen does not move from where
 I have set it previously with a mouse. More precisely,
 It jumps to a position which corresponds to The_value
 and back to where it was before!
 Any ideas would be helpful.


 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus
 on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user




-- 
joshua higgins
--
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] How to set a slider value?

2009-08-24 Thread Fabien Bodard
2009/8/24 Aleksandrs Livshics alek...@mpe.lv:
 Dear Gambas users,
 I am new to Gambas and my question may be silly,
 however I cannot find how to set a slider value in the
 code. (Not the initial value, this is easy)
 I want to specify some event (like double click on a slider)
 to force it to jump to a predefined position/value.

 If I write Dbl_click() method and use something like
 My_slider.value = The_value
 in it, then slider on screen does not move from where
 I have set it previously with a mouse. More precisely,
 It jumps to a position which corresponds to The_value
 and back to where it was before!
 Any ideas would be helpful.


try to stop the event after setting the value

public sub MySlider_DblClick()
  My_slider.value = The_value
  Stop Event
end

 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Dr. Diesel
On Mon, Aug 24, 2009 at 12:35 PM, David Villalobos Cambronero 
david_villalobo...@yahoo.com wrote:

 Hi, this is my first try!! any comment

  Regards


 --
 David


Looks good on the Fedora 10 side.

[gar...@localhost Download]$ ./report
./report: line 35: gbx: command not found
./report: line 36: gbx2: command not found
[gar...@localhost Download]$


report.log:

[OperativeSystem]
OperativeSystem=Linux
KernelRelease=2.6.29.5-84.fc10.x86_64
Distribution=Fedora release 10 (Cambridge)

[Hardwate]

[Gambas]
Gambas=
Gambas2=
Gambas3=2.99.0



-- 
projecthuh.com
All of my bits are free, are yours?  Fedoraproject.org
I'd rather have dead offenders than repeat offenders - Ted Nugent
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Jean-Yves F. Barbier
David Villalobos Cambronero a écrit :
 Hi, this is my first try!! any comment
...

Debian SID
===

[OperativeSystem]   
OperativeSystem=Linux 
KernelRelease=2.6.25.4
Distribution=Debian GNU/Linux squeeze/sid \n \l == head -n1 /etc/issue | 
cut -d '\' -f 1
   ^
[Hardwate]

[Gambas]
Gambas=
Gambas2=2.15.2
Gambas3=

===

It is: OperatingSystem

Works ok for me :)

JY
-- 
Q:  What's the difference between a man and the weekend?
A:  The weekend never comes too soon.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread M0E Lnx
Ohh, I guess it needs gambas3

I'm still using gambas2 here. Wanted to try it on VectorLinux

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread M0E Lnx
I see where it detected my gambas version

But there is no OS information reported

-
root:$ cat report.log
[OperativeSystem]
OperativeSystem=Linux
KernelRelease=2.6.27.29
Distribution=

[Hardwate]

[Gambas]
Gambas=
Gambas2=2.15.2
Gambas3=
--

You can search for /etc/vector-version
You can also check for /etc/slack-ware version. But I would do
/etc/vector-version first, as vector has both. that way, you can
correctly identify a vectorlinux install.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Jean-Yves F. Barbier
David Villalobos Cambronero a écrit :
 Hi, this is my first try!! any comment

About Debian: there's also a /etc/debian_version

JY
-- 

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Joshua Higgins
I've adapted David's original script, adding more distro detection and cpu
architecture identification.

Attached, writes log to report2.log


-- 
joshua higgins
--


report2
Description: Binary data
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread M0E Lnx
I get an error says

report2: line 23: [: /etc/slackware-version: binary operator expected

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread M0E Lnx
and the overall output is not good...

your quotes are throwin the whole thing off I think

==
#!/bin/bash

# System Report
# GPL'd
# Based on David Villalobos Cambronero's original report script

# Collect the data for OS

OutputFile='report2.log';


OS=`uname`
KERNEL=`uname -r`
ARCH=`uname -m`


maybe try
OS=$(uname)
KERNEL=$(uname -r)
ARCH=$(uname -m)

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread David Villalobos Cambronero
Thanks Joshua, I'll add your code ASAP, just let me finish some small changes.

Can we try this, specially on vector Linux? Please.

I now adding ./reconf-all, etc are pending, just be paitient.

 Regards


--
David



- Original Message 
From: Joshua Higgins joshigg...@googlemail.com
To: mailing list for gambas users gambas-user@lists.sourceforge.net
Sent: Monday, August 24, 2009 11:25:35 AM
Subject: Re: [Gambas-user] Need help / call for volunteers

I've adapted David's original script, adding more distro detection and cpu
architecture identification.

Attached, writes log to report2.log


-- 
joshua higgins
--



  

report
Description: Binary data
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Joshua Higgins
Can you post the contents of /etc/slackware-version??


-- 
joshua higgins
--
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Jean-Yves F. Barbier
Joshua Higgins a écrit :
 I've adapted David's original script, adding more distro detection and cpu
 architecture identification.

Debian sid
==

[OperatingSystem]

OperatingSystem=Linux
KernelRelease=2.6.25.4
CPUArchitecture=i686
Distribution=squeeze/sid

[Gambas]
Gambas1=
Gambas2=2.15.2
Gambas3=

==

Looks good :)

JY
-- 
printk(ufs_read_super: fucking Sun blows me\n);
-- /usr/src/linux/fs/ufs/ufs_super.c

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Jussi Lahtinen
Hmmm I run it from Desktop, did I do something wrong?
@Ubuntu 9.04 64bit

[: 35: -a: unexpected operator
[: 35: -a: unexpected operator
[: 35: -a: unexpected operator
[: 35: -a: unexpected operator
report2: 39: gbx: not found   (I haven't install Gambas1)



Report2.log

[OperatingSystem]

OperatingSystem=Linux
KernelRelease=2.6.28-15-generic
CPUArchitecture=x86_64
Distribution=

[Gambas]
Gambas1=
Gambas2=2.10.2
Gambas3=2.99.0


Jussi


On Mon, Aug 24, 2009 at 20:39, M0E Lnxm0e@gmail.com wrote:
 and the overall output is not good...

 your quotes are throwin the whole thing off I think

 ==
 #!/bin/bash

 # System Report
 # GPL'd
 # Based on David Villalobos Cambronero's original report script

 # Collect the data for OS

 OutputFile='report2.log';


 OS=`uname`
 KERNEL=`uname -r`
 ARCH=`uname -m`

 
 maybe try
 OS=$(uname)
 KERNEL=$(uname -r)
 ARCH=$(uname -m)

 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Dr. Diesel
On Mon, Aug 24, 2009 at 1:44 PM, Joshua Higgins
joshigg...@googlemail.comwrote:

 M0E Lnx, can you try this?

 2009/8/24 M0E Lnx m0e@gmail.com

  and the overall output is not good...
 
  your quotes are throwin the whole thing off I think
 
  ==
  #!/bin/bash
 
  # System Report
  # GPL'd
  # Based on David Villalobos Cambronero's original report script
 
  # Collect the data for OS
 
  OutputFile='report2.log';
 
 
  OS=`uname`
  KERNEL=`uname -r`
  ARCH=`uname -m`
 
  
  maybe try
  OS=$(uname)
  KERNEL=$(uname -r)
  ARCH=$(uname -m)
 
 
 
 --
  Let Crystal Reports handle the reporting - Free Crystal Reports 2008
 30-Day
  trial. Simplify your report design, integration and deployment - and
 focus
  on
  what you do best, core application coding. Discover what's new with
  Crystal Reports now.  http://p.sf.net/sfu/bobj-july
  ___
  Gambas-user mailing list
  Gambas-user@lists.sourceforge.net
  https://lists.sourceforge.net/lists/listinfo/gambas-user
 


Fedora requires /etc/*release or /etc/issue, /etc*-release does not work!

Thanks
Andy

-- 
projecthuh.com
All of my bits are free, are yours?  Fedoraproject.org
I'd rather have dead offenders than repeat offenders - Ted Nugent
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread M0E Lnx
Still not good on Vector

==
vluser:$ cat report.log
[OperatingSystem]
OperatingSystem=Linux
KernelRelease=2.6.27.29

[Distribution]
ID=
RELEASE=
CODENAME=
DESCRIPTION=

[Hardware]
Architecture=2.6.27.29

[Gambas]
Gambas=
Gambas2=2.15.2
Gambas3=
==

And here is the complete output of report2.log
==
vluser:$ sh report2
report2: line 22: [: /etc/slackware-version: binary operator expected
report2: line 39: gbx: command not found
report2: line 41: gbx3: command not found
VLVM:/~/Downloads
vluser:$ cat report2.log
[OperatingSystem]

OperatingSystem=Linux
KernelRelease=2.6.27.29
CPUArchitecture=i686
Distribution=

[Gambas]
Gambas1=
Gambas2=2.15.2
Gambas3=
===

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Charlie Reinl
Salut, 

about, sysinfo.sh 

the infos about distros, worked at the time I'v used them, today only
for Ubuntu I can confirm that.

the gambas2/3 Revision is not puled out from svn, so it my be not the
one who is finally/successfully installed on the box.

It would be useful to know from Benoit, which versions are not needed
and which one are needed and not in the list.

One I added this afternoon for Qt4 :

echo-  QT4
-
sysInfo.log  21
dpkg -p libqt4-core  sysInfo.log  21

and ther are nothing for  KDE4

Some info's could be shorter with a egrep or grep -e

Charlie 

  
Am Montag, den 24.08.2009, 18:53 +0200 schrieb Benoît Minisini:
  Hi, this is my first try!! any comment
 
   Regards
 
 
  --
  David
 
 
 
 You must fix the english terms (Operat*ing* system, Hardw*are*, etc.)
 
 You must handle distributions that do not use /etc/issue (ex: vector linux, 
 see the prevous mails in this thread).
 
 Regards,
 


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Jean-Yves F. Barbier
Benoît Minisini a écrit :
...

 /usr/bin/gbx* are symbolic links that points at where Gambas is installed, so 
 it would be cool to use it to get the Gambas installation path.

ls -Al /usr/bin/gbx*

-- 


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Joshua Higgins
M0E Lnx: I think that there are two /etc/*-version files for Vector, and my
script only expects there to be 1.

2009/8/24 M0E Lnx m0e@gmail.com

 Still not good on Vector

 ==
 vluser:$ cat report.log
 [OperatingSystem]
 OperatingSystem=Linux
 KernelRelease=2.6.27.29

 [Distribution]
 ID=
 RELEASE=
 CODENAME=
 DESCRIPTION=

 [Hardware]
 Architecture=2.6.27.29

 [Gambas]
 Gambas=
 Gambas2=2.15.2
 Gambas3=
 ==

 And here is the complete output of report2.log
 ==
 vluser:$ sh report2
 report2: line 22: [: /etc/slackware-version: binary operator expected
 report2: line 39: gbx: command not found
 report2: line 41: gbx3: command not found
 VLVM:/~/Downloads
 vluser:$ cat report2.log
 [OperatingSystem]

 OperatingSystem=Linux
 KernelRelease=2.6.27.29
 CPUArchitecture=i686
 Distribution=

 [Gambas]
 Gambas1=
 Gambas2=2.15.2
 Gambas3=
 ===


 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus
 on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user




-- 
joshua higgins
--
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Jean-Yves F. Barbier
Joshua Higgins a écrit :
 M0E Lnx, can you try this?
 
 2009/8/24 M0E Lnx m0e@gmail.com
 
 and the overall output is not good...

 your quotes are throwin the whole thing off I think
...

V2 is also ok for Debian

-- 

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread David Villalobos Cambronero
The same for any other distro?

 Regards


--
David



- Original Message 
From: M0E Lnx m0e@gmail.com
To: mailing list for gambas users gambas-user@lists.sourceforge.net
Sent: Monday, August 24, 2009 11:50:53 AM
Subject: Re: [Gambas-user] Need help / call for volunteers

Still not good on Vector

==
vluser:$ cat report.log
[OperatingSystem]
OperatingSystem=Linux
KernelRelease=2.6.27.29

[Distribution]
ID=
RELEASE=
CODENAME=
DESCRIPTION=

[Hardware]
Architecture=2.6.27.29

[Gambas]
Gambas=
Gambas2=2.15.2
Gambas3=
==

And here is the complete output of report2.log
==
vluser:$ sh report2
report2: line 22: [: /etc/slackware-version: binary operator expected
report2: line 39: gbx: command not found
report2: line 41: gbx3: command not found
VLVM:/~/Downloads
vluser:$ cat report2.log
[OperatingSystem]

OperatingSystem=Linux
KernelRelease=2.6.27.29
CPUArchitecture=i686
Distribution=

[Gambas]
Gambas1=
Gambas2=2.15.2
Gambas3=
===

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user



  


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Jean-Yves F. Barbier
David Villalobos Cambronero a écrit :
 Thanks Joshua, I'll add your code ASAP, just let me finish some small changes.
 
 Can we try this, specially on vector Linux? Please.
 
 I now adding ./reconf-all, etc are pending, just be paitient.

PB under Debian:


sed: impossible de lire /etc/lsb-release: Aucun fichier ou dossier de ce type
sed: impossible de lire /etc/lsb-release: Aucun fichier ou dossier de ce type
sed: impossible de lire /etc/lsb-release: Aucun fichier ou dossier de ce type
sed: impossible de lire /etc/lsb-release: Aucun fichier ou dossier de ce type
./report: line 42: gbx : commande introuvable
./report: line 44: gbx3 : commande introuvable


Output:
===

[OperatingSystem]
OperatingSystem=Linux
KernelRelease=2.6.25.4

[Distribution]
ID=
RELEASE=
CODENAME=
DESCRIPTION=

[Hardware]
Architecture=2.6.25.4

[Gambas]
Gambas=
Gambas2=2.15.2
Gambas3=


Architecture is relevant.

JY
-- 


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread M0E Lnx
As I said before, vector has both, /etc/vector-version and
/etc/slackware-version

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Jean-Yves F. Barbier
M0E Lnx a écrit :
 As I said before, vector has both, /etc/vector-version and
 /etc/slackware-version

bad vektor, change vektor.
it seems it is the only distro that has a doublon as /etc/*-version  ...
make sure it is native and don't come from a change/upgrade

-- 


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Joshua Higgins
Just to let everyone know, I'm working on reliably detecting the distro...

2009/8/24 M0E Lnx m0e@gmail.com

 I think most slackware derivates have 2 also..
 I know ubuntu has a ubuntu and a debian identifier as well

 this is not unique to vectorlinux


 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus
 on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user




-- 
joshua higgins
--
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Jean-Yves F. Barbier
M0E Lnx a écrit :
 I think most slackware derivates have 2 also..
 I know ubuntu has a ubuntu and a debian identifier as well
 
 this is not unique to vectorlinux

PLS answer against the good node, otherwise this heavy thread will fast
look like crap.

-- 

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Marcelo Confortino
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Gentoo:

[OperatingSystem]

OperatingSystem=Linux
KernelRelease=2.6.27-gentoo-r8
CPUArchitecture=i686
Distribution=Gentoo Base System release 1.12.11.1

[Gambas]
Gambas1=gbx-1.0.19
Gambas2=2.13.0
Gambas3=

M.

Joshua Higgins escribió:
 I've adapted David's original script, adding more distro detection
 and cpu architecture identification.

 Attached, writes log to report2.log



 --


 --
  Let Crystal Reports handle the reporting - Free Crystal Reports
 2008 30-Day trial. Simplify your report design, integration and
 deployment - and focus on what you do best, core application
 coding. Discover what's new with Crystal Reports now.
 http://p.sf.net/sfu/bobj-july

 --


 ___ Gambas-user mailing
 list Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user

-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkqS2EAACgkQ6+gNQbxrPhrQ7ACgyTEbrDlRoub+YwoRi84GjGaQ
EWsAoL6l1cSR8YSElXK+GXte4fpy8982
=uDjA
-END PGP SIGNATURE-

__
Correo Yahoo!
Espacio para todos tus mensajes, antivirus y antispam ¡gratis! 
¡Abrí tu cuenta ya! - http://correo.yahoo.com.ar


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Dr. Diesel
On Mon, Aug 24, 2009 at 3:17 PM, M0E Lnx m0e@gmail.com wrote:

 that works here
 =
 vluser:$ cat report2.log
 [OperatingSystem]

 OperatingSystem=Linux
 KernelRelease=2.6.27.29
 CPUArchitecture=i686
 DistributionVendor=vector
 DistributionRelease=Vector Linux 6.0 SOHO Alpha 1.16

 [Gambas]
 Gambas1=Not Installed
 Gambas2=2.15.2
 Gambas2Path=/usr/bin/gbx2
 Gambas3=Not Installed
 ==


And here:

[gar...@localhost Download]$ ./report-ng
System Report for Gambas
Found distro information at /etc/redhat-release!
Detected distro: redhat
Saved to report2.log
Done.
[gar...@localhost Download]$ cat report2.log
[OperatingSystem]

OperatingSystem=Linux
KernelRelease=2.6.29.5-84.fc10.x86_64
CPUArchitecture=x86_64
DistributionVendor=redhat
DistributionRelease=Fedora release 10 (Cambridge)

[Gambas]
Gambas1=Not Installed
Gambas2=Not Installed
Gambas3=2.99.0
Gambas3Path=
[gar...@localhost Download]$




-- 
projecthuh.com
All of my bits are free, are yours?  Fedoraproject.org
I'd rather have dead offenders than repeat offenders - Ted Nugent
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Jean-Yves F. Barbier
Joshua Higgins a écrit :
... 
 Please test this if you can...

Seems to work ok under Debian sid:
==

[OperatingSystem]

OperatingSystem=Linux
KernelRelease=2.6.25.4
CPUArchitecture=i686
DistributionVendor=debian
DistributionRelease=squeeze/sid

[Gambas]
Gambas1=Not Installed
Gambas2=2.15.2
Gambas2Path=/usr/bin/gbx2
Gambas3=Not Installed


I guess this is most needed for ML reports (and for Bênôît:)

However, for web compatibility reporting, this quest could last
a long time.
Somebody recently posted about: http://www.cdash.org/ 
this may be THE (web reporting) solution, as it is very easy to 
add a new distro (also to add an existing but modified distro, 
such as, for example, Debian Lenny + backports)

JY
-- 
If men couldn't fuck there'd be a bounty on their heads.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Fabien Bodard
fab...@ubuntu:~$ sh report-ng
System Report for Gambas
Found distro information at /etc/lsb-release!
Detected distro: ubuntu
Saved to report2.log
Done.
fab...@ubuntu:~$ cat report
report2.log  report-ng
fab...@ubuntu:~$ cat report2.log
[OperatingSystem]

OperatingSystem=Linux
KernelRelease=2.6.28-14-generic
CPUArchitecture=x86_64
DistributionVendor=ubuntu
DistributionRelease=Ubuntu 9.04

[Gambas]
Gambas1=Not Installed
Gambas2=2.8.2
Gambas2Path=/usr/bin/gbx2
Gambas3=2.99.0
Gambas3Path=
fab...@ubuntu:~$


it work well here too... just ... you have a blank line after
[OperatingSystem]



2009/8/24 Jean-Yves F. Barbier 12u...@gmail.com:
 Joshua Higgins a écrit :
 ...
 Please test this if you can...

 Seems to work ok under Debian sid:
 ==

 [OperatingSystem]

 OperatingSystem=Linux
 KernelRelease=2.6.25.4
 CPUArchitecture=i686
 DistributionVendor=debian
 DistributionRelease=squeeze/sid

 [Gambas]
 Gambas1=Not Installed
 Gambas2=2.15.2
 Gambas2Path=/usr/bin/gbx2
 Gambas3=Not Installed


 I guess this is most needed for ML reports (and for Bênôît:)

 However, for web compatibility reporting, this quest could last
 a long time.
 Somebody recently posted about: http://www.cdash.org/
 this may be THE (web reporting) solution, as it is very easy to
 add a new distro (also to add an existing but modified distro,
 such as, for example, Debian Lenny + backports)

 JY
 --
 If men couldn't fuck there'd be a bounty on their heads.

 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Joshua Higgins

 it work well here too... just ... you have a blank line after
 [OperatingSystem]


At the moment, I'm unsure whether to keep updating and attaching this script
until we know the status of David's script and how far he is along...

However the blank line is by accident... nothing should be there :-)


-- 
joshua higgins
--
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Fabien Bodard
This is a little modification to get the true gambas path ... in every
distrib :)


GAMBASPATH=$(which gbx 2/dev/null)
GAMBAS2PATH=$(which gbx2 2/dev/null)
GAMBAS3PATH=$(which gbx3 2/dev/null)




2009/8/24 Fabien Bodard gambas...@gmail.com:
 fab...@ubuntu:~$ sh report-ng
 System Report for Gambas
 Found distro information at /etc/lsb-release!
 Detected distro: ubuntu
 Saved to report2.log
 Done.
 fab...@ubuntu:~$ cat report
 report2.log  report-ng
 fab...@ubuntu:~$ cat report2.log
 [OperatingSystem]

 OperatingSystem=Linux
 KernelRelease=2.6.28-14-generic
 CPUArchitecture=x86_64
 DistributionVendor=ubuntu
 DistributionRelease=Ubuntu 9.04

 [Gambas]
 Gambas1=Not Installed
 Gambas2=2.8.2
 Gambas2Path=/usr/bin/gbx2
 Gambas3=2.99.0
 Gambas3Path=
 fab...@ubuntu:~$


 it work well here too... just ... you have a blank line after
 [OperatingSystem]



 2009/8/24 Jean-Yves F. Barbier 12u...@gmail.com:
 Joshua Higgins a écrit :
 ...
 Please test this if you can...

 Seems to work ok under Debian sid:
 ==

 [OperatingSystem]

 OperatingSystem=Linux
 KernelRelease=2.6.25.4
 CPUArchitecture=i686
 DistributionVendor=debian
 DistributionRelease=squeeze/sid

 [Gambas]
 Gambas1=Not Installed
 Gambas2=2.15.2
 Gambas2Path=/usr/bin/gbx2
 Gambas3=Not Installed


 I guess this is most needed for ML reports (and for Bênôît:)

 However, for web compatibility reporting, this quest could last
 a long time.
 Somebody recently posted about: http://www.cdash.org/
 this may be THE (web reporting) solution, as it is very easy to
 add a new distro (also to add an existing but modified distro,
 such as, for example, Debian Lenny + backports)

 JY
 --
 If men couldn't fuck there'd be a bounty on their heads.

 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user




report-ng
Description: Binary data
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Fabien Bodard
without the blank line

2009/8/24 Joshua Higgins joshigg...@googlemail.com:

 it work well here too... just ... you have a blank line after
 [OperatingSystem]


 At the moment, I'm unsure whether to keep updating and attaching this script
 until we know the status of David's script and how far he is along...

 However the blank line is by accident... nothing should be there :-)


 --
 joshua higgins
--
 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user



report-ng
Description: Binary data
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Charlie Reinl
---8--
 Please test this if you can...

here path not found 

e...@scenic:~$ which gbx3
/usr/local/bin/gbx3

[OperatingSystem]

OperatingSystem=Linux
KernelRelease=2.6.24-24-generic
CPUArchitecture=i686
DistributionVendor=ubuntu
DistributionRelease=Ubuntu 8.04.3 LTS

[Gambas]
Gambas1=gbx-1.0.17
Gambas1Path=/usr/bin/gbx
Gambas2=2.15.2
Gambas2Path=
Gambas3=2.99.0
Gambas3Path=


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Fabien Bodard
could you try with the file i send  ?

2009/8/24 Charlie Reinl karl.re...@fen-net.de:
 ---8--
 Please test this if you can...

 here path not found

 e...@scenic:~$ which gbx3
 /usr/local/bin/gbx3

 [OperatingSystem]

 OperatingSystem=Linux
 KernelRelease=2.6.24-24-generic
 CPUArchitecture=i686
 DistributionVendor=ubuntu
 DistributionRelease=Ubuntu 8.04.3 LTS

 [Gambas]
 Gambas1=gbx-1.0.17
 Gambas1Path=/usr/bin/gbx
 Gambas2=2.15.2
 Gambas2Path=
 Gambas3=2.99.0
 Gambas3Path=


 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread David Villalobos Cambronero
Well, I think you're closer than me. So you can finish the job.

 Regards


--
David



- Original Message 
From: Joshua Higgins joshigg...@googlemail.com
To: mailing list for gambas users gambas-user@lists.sourceforge.net
Sent: Monday, August 24, 2009 1:48:17 PM
Subject: Re: [Gambas-user] Need help / call for volunteers


 it work well here too... just ... you have a blank line after
 [OperatingSystem]


At the moment, I'm unsure whether to keep updating and attaching this script
until we know the status of David's script and how far he is along...

However the blank line is by accident... nothing should be there :-)


-- 
joshua higgins
--
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user



  


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Fabien Bodard
2009/8/24 David Villalobos Cambronero david_villalobo...@yahoo.com:
 Well, I think you're closer than me. So you can finish the job.

i've just corrected two line you know ... i'm not really good at the sh game :)

finish it please as i've not more time than you

regards


  Regards


 --
 David



 - Original Message 
 From: Joshua Higgins joshigg...@googlemail.com
 To: mailing list for gambas users gambas-user@lists.sourceforge.net
 Sent: Monday, August 24, 2009 1:48:17 PM
 Subject: Re: [Gambas-user] Need help / call for volunteers


 it work well here too... just ... you have a blank line after
 [OperatingSystem]


 At the moment, I'm unsure whether to keep updating and attaching this script
 until we know the status of David's script and how far he is along...

 However the blank line is by accident... nothing should be there :-)


 --
 joshua higgins
--
 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user






 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Charlie Reinl
Am Montag, den 24.08.2009, 22:04 +0200 schrieb Fabien Bodard:
 could you try with the file i send  ?
 
 2009/8/24 Charlie Reinl karl.re...@fen-net.de:
  ---8--
  Please test this if you can...
 
  here path not found
 
  e...@scenic:~$ which gbx3
  /usr/local/bin/gbx3
 
  [OperatingSystem]
 
  OperatingSystem=Linux
  KernelRelease=2.6.24-24-generic
  CPUArchitecture=i686
  DistributionVendor=ubuntu
  DistributionRelease=Ubuntu 8.04.3 LTS
 
  [Gambas]
  Gambas1=gbx-1.0.17
  Gambas1Path=/usr/bin/gbx
  Gambas2=2.15.2
  Gambas2Path=
  Gambas3=2.99.0
  Gambas3Path=
 
 

used Fabiens version, good so!

[OperatingSystem]
OperatingSystem=Linux
KernelRelease=2.6.24-24-generic
CPUArchitecture=i686
DistributionVendor=ubuntu
DistributionRelease=Ubuntu 8.04.3 LTS

[Gambas]
Gambas1=gbx-1.0.17
Gambas1Path=/usr/bin/gbx
Gambas2=2.15.2
Gambas2Path=/usr/local/bin/gbx2
Gambas3=2.99.0
Gambas3Path=/usr/local/bin/gbx3


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Joshua Higgins
Okay, so this version of the script with the additions by Fabien seems to be
fairly stable.

Also now includes system total ram.

Now outputs to gambas_report.log instead of report2.log.

-- 
joshua higgins
--


report-ng
Description: Binary data
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] New feature in Gambas 3 IDE

2009-08-24 Thread Dr. Diesel
2009/8/24 Benoît Minisini gam...@users.sourceforge.net

 Hi,

 In Gambas 3 IDE, you can now modify the contents of local variables, global
 variables, and any field in debugger watch windows. While debugging of
 course...

 This feature is fresh, so you may have crashes!

 Regards,

 --
 Benoît


You sir, are the man!  Many thanks for such a great enviroment!

This post got me wondering, the roadmap on the gambas website does not
mention any date for the v3 release?  Any available guess/estimate?
 Although svn has been serving me just fine :D

Andy

-- 
projecthuh.com
All of my bits are free, are yours?  Fedoraproject.org
I'd rather have dead offenders than repeat offenders - Ted Nugent
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Charlie Reinl
Am Montag, den 24.08.2009, 22:09 +0100 schrieb Joshua Higgins:
 Okay, so this version of the script with the additions by Fabien seems to be
 fairly stable.
 
 Also now includes system total ram.
 
 Now outputs to gambas_report.log instead of report2.log.

looks OK.

[OperatingSystem]
OperatingSystem=Linux
KernelRelease=2.6.24-24-generic
DistributionVendor=ubuntu
DistributionRelease=Ubuntu 8.04.3 LTS

[System]
CPUArchitecture=i686
TotalRam=506932 kB

[Gambas]
Gambas1=gbx-1.0.17
Gambas1Path=/usr/bin/gbx
Gambas2=2.15.2
Gambas2Path=/usr/local/bin/gbx2
Gambas3=2.99.0
Gambas3Path=/usr/local/bin/gbx3


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] Need help / call for volunteers

2009-08-24 Thread Jean-Yves F. Barbier
Joshua Higgins a écrit :
 Okay, so this version of the script with the additions by Fabien seems to be
 fairly stable.
 
 Also now includes system total ram.
 
 Now outputs to gambas_report.log instead of report2.log.

Works good with Debian sid:
===

[OperatingSystem]
OperatingSystem=Linux
KernelRelease=2.6.25.4
DistributionVendor=debian
DistributionRelease=squeeze/sid

[System]
CPUArchitecture=i686
TotalRam=1556336 kB

[Gambas]
Gambas1=Not Installed
Gambas2=2.15.2
Gambas2Path=/usr/bin/gbx2
Gambas3=Not Installed

-- 

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] New feature in Gambas 3 IDE

2009-08-24 Thread Charlie Reinl
Am Montag, den 24.08.2009, 23:24 +0200 schrieb Benoît Minisini:
  2009/8/24 Benoît Minisini gam...@users.sourceforge.net
 
   Hi,
  
   In Gambas 3 IDE, you can now modify the contents of local variables,
   global variables, and any field in debugger watch windows. While
   debugging of course...
  
   This feature is fresh, so you may have crashes!
  
   Regards,
  
   --
   Benoît
 
  You sir, are the man!  Many thanks for such a great enviroment!
 
  This post got me wondering, the roadmap on the gambas website does not
  mention any date for the v3 release?  Any available guess/estimate?
   Although svn has been serving me just fine :D
 
  Andy
 
 The problem is the following: either I don't release a v3 soon, which may be 
 a 
 bad idea, or I release a v3 soon, but I have to implement sort of 
 independant versioning system for each Gambas part so that I can add the 
 missing features later.
 
 At the moment, I choose the second solution, except that I don't know exactly 
 how to implement the independant versioning system. Must think about it 
 more...
 
 Regards,
 
Hey ? and Dr. House ? ;)


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] New feature in Gambas 3 IDE

2009-08-24 Thread Benoît Minisini
 Charlie Reinl a écrit :
 ...

  At the moment, I choose the second solution, except that I don't know
  exactly how to implement the independant versioning system. Must think
  about it more...
 
  Regards,
 
  Hey ? and Dr. House ? ;)

 He's cheating Charlie: the day he talked about House MD there
 was no broadcast in fr (may be he has built a pirate decoder in Gambas:)

 JY

I never cheat. I'm a good guy. :-)

-- 
Benoît

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] New feature in Gambas 3 IDE

2009-08-24 Thread Benoît Minisini
 Am Montag, den 24.08.2009, 23:24 +0200 schrieb Benoît Minisini:
   2009/8/24 Benoît Minisini gam...@users.sourceforge.net
  
Hi,
   
In Gambas 3 IDE, you can now modify the contents of local variables,
global variables, and any field in debugger watch windows. While
debugging of course...
   
This feature is fresh, so you may have crashes!
   
Regards,
   
--
Benoît
  
   You sir, are the man!  Many thanks for such a great enviroment!
  
   This post got me wondering, the roadmap on the gambas website does not
   mention any date for the v3 release?  Any available guess/estimate?
Although svn has been serving me just fine :D
  
   Andy
 
  The problem is the following: either I don't release a v3 soon, which may
  be a bad idea, or I release a v3 soon, but I have to implement sort of
  independant versioning system for each Gambas part so that I can add the
  missing features later.
 
  At the moment, I choose the second solution, except that I don't know
  exactly how to implement the independant versioning system. Must think
  about it more...
 
  Regards,

 Hey ? and Dr. House ? ;)


Inside Season 2 at the moment...

-- 
Benoît

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] webcam weirdness

2009-08-24 Thread Benoît Minisini
 Not sure what to include with this, please ask for additional info.
 Attached is a pict of some webcam weirdness with no error messages
 generated.  Doesn't appear to be a webcam issue as the image looks fine
 with Cheese Webcam Booth.

 This was taken with gambas v3 SVN as of yesterday running the WebCam
 example program.

 usb 4-1: new full speed USB device using uhci_hcd and address 4
 usb 4-1: New USB device found, idVendor=0733, idProduct=0401
 usb 4-1: New USB device strings: Mfr=0, Product=0, SerialNumber=0
 usb 4-1: configuration #1 chosen from 1 choice
 gspca: probing 0733:0401
 gspca: probe ok
 [a...@localhost trunk]$

 Only gambas debug info was this:

 (WebCam:25423): Gdk-CRITICAL **: gdk_x11_atom_to_xatom_for_display:
 assertion `atom != GDK_NONE' failed
 gambas v4l2: SPCA501 [11]
 gambas v4l2: SPCA501 [11]
 gambas v4l2: SPCA501 [11]
 /snip
 gambas v4l2: SPCA501 [11]
 gambas v4l2: SPCA501 [11]

 Thanks
 Andy

This is an image conversion problem: the SPCA501 is an image format, and the 
gb.v4l component prints it each time it cannot convert it to RGB. 

Apparently the component can convert only a few format to the one supported by 
Gambas: RGB  RGBA.

But I don't know what SPCA501 is exactly. A conversion library format is 
needed...

Regards,

-- 
Benoît

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] New feature in Gambas 3 IDE

2009-08-24 Thread Jean-Yves F. Barbier
Benoît Minisini a écrit :
 Charlie Reinl a écrit :
 ...

 At the moment, I choose the second solution, except that I don't know
 exactly how to implement the independant versioning system. Must think
 about it more...

 Regards,
 Hey ? and Dr. House ? ;)
 He's cheating Charlie: the day he talked about House MD there
 was no broadcast in fr (may be he has built a pirate decoder in Gambas:)

 JY
 
 I never cheat. I'm a good guy. :-)

Hm, denegation is not plausible (Charlie, build a Gambas-Polygraph!)

JY
-- 
  Our comedies are not to be laughed at. -Samuel Goldwyn

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] webcam weirdness

2009-08-24 Thread Jean-Yves F. Barbier
Ron_1st a écrit :
... 
 The pwc driver returns a v4l2 installation.
 The gb.v4l component can't handle v4l2 complet/correct but only v4l1 ATM

normally no: ie: camstream uses the v4L1 compatibility mode that I compiled
into my kernel (but may be the program spcifically ask for that mode, which
could explain why it don't work with MyWebCam)

 I have the same problem with the philips cams, i.e. PCVC645, and flash 
 (adobe) 
 and i'm using flashcam package http://flashcam.sourceforge.net
 A project to make Adobe Flash for Linux support V4L2 webcams or video devices.

I avoid using adobe products in general (not free, super-bloatted, unexistant
security (a very small worm is enough to activate it and spy you through
flash webcam/mike facility); and you don't know what is transmitted to adobe), 
and flash in particular, as it don't have *any* interest in it.
(the only thing it does very well is making my old CPU jump straight to 100% 
each time I'm obliged to use it.)

 It's using a modified vloopback from the motion project.
 This is in use for webcam on the intraweb site.

I successfuly installed Ekiga in many places: it is fully m$n compatible,
can uses many sound codecs, and the H264 video mode has really an amazing
quality (on a LAN, and if you have a good WC, you're close to DVD quality:)
Try it, you'll love it.
 
 Ron_1st

JY_666th
-- 
If rash develops, discontinue use.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] webcam weirdness

2009-08-24 Thread Jean-Yves F. Barbier
Steven James Drinnan a écrit :
 Try 
 
 for 32bit systems
 
 LD_PRELOAD='/usr/lib/libv4l/v4l1compat.so' gambas2
 

YES Steven, that's working :)

JY
-- 
A woman was in love with fourteen soldiers.  It was clearly platoonic.

--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] type mismatch: wanted integer, got string instead

2009-08-24 Thread MSulchan Darmawan
Dear sir,

I have the following code :

  DIM sRain AS String
  DIM iRain AS Integer
  DIM iPos AS Integer
  DIM iYear AS String
  DIM iMonth AS String

  modMain.Connect
  hRes = modMain.$Con.Exec(SELECT * FROM table)

  FOR EACH hRes

iPos = hRes!id
iYear = hRes!yr
iMonth = hRes!mn
sRain = hRes!r1

' PRINT iPos, iYear, iMonth, sRain
iRain = CInt(sRain)
IF iRain  100 THEN PRINT iPos, iYear, iMonth

  NEXT

on this line : iRain = CInt(sRain)
I got the type mismatch error.
This is my first try to program on gambas.
So why the error happened ? Any suggestion to fix are welcome.

FYI, the database connected successfully, hRes!r1 is a string, sRain is
a string, and I'd like to get the integer value of sRain.
The possible value of sRain is : 0, 1, 2, x, -, NULL.

Help !
I'm using gambas2 2.8.2 on linux mint 7.

Thanks in advance.
Regards,
Sulchan


signature.asc
Description: PGP signature
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] type mismatch: wanted integer, got string instead

2009-08-24 Thread Dimitris Anogiatis
Hey MSulchan,

if you're trying to convert either x, -, or NULL
to an integer you're correctly going to get a mismatch error

basically the mismatch error is a way of saying
I can't convert x into an integer, I don't know what number to convert
x to

what I would personally use instead of  iRain = CInt(sRain) is a Select
statement like this one

SELECT CASE sRain
   Case  0
 iRain = 0
   Case  1
 iRain = 1
   Case  2
 iRain = 2
   Case  x
 iRain = 3
   Case  -
 iRain = 4
   Case  ELSE  'this case would be used in case of anything else including
null
 iRain = -1
END SELECT

this way iRain would always have an integer and you wouldn't have to worry
about
the mismatch error... assuming 0, 1, 2, x, - and NULL are the only
values
used in your database.

I hope this helps

Regards
Dimitris

On Mon, Aug 24, 2009 at 10:35 PM, MSulchan Darmawan bleke...@gmail.comwrote:

 Dear sir,

 I have the following code :

  DIM sRain AS String
  DIM iRain AS Integer
  DIM iPos AS Integer
  DIM iYear AS String
  DIM iMonth AS String

  modMain.Connect
  hRes = modMain.$Con.Exec(SELECT * FROM table)

  FOR EACH hRes

iPos = hRes!id
iYear = hRes!yr
iMonth = hRes!mn
sRain = hRes!r1

' PRINT iPos, iYear, iMonth, sRain
iRain = CInt(sRain)
IF iRain  100 THEN PRINT iPos, iYear, iMonth

  NEXT

 on this line : iRain = CInt(sRain)
 I got the type mismatch error.
 This is my first try to program on gambas.
 So why the error happened ? Any suggestion to fix are welcome.

 FYI, the database connected successfully, hRes!r1 is a string, sRain is
 a string, and I'd like to get the integer value of sRain.
 The possible value of sRain is : 0, 1, 2, x, -, NULL.

 Help !
 I'm using gambas2 2.8.2 on linux mint 7.

 Thanks in advance.
 Regards,
 Sulchan


 --
 Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day
 trial. Simplify your report design, integration and deployment - and focus
 on
 what you do best, core application coding. Discover what's new with
 Crystal Reports now.  http://p.sf.net/sfu/bobj-july
 ___
 Gambas-user mailing list
 Gambas-user@lists.sourceforge.net
 https://lists.sourceforge.net/lists/listinfo/gambas-user


--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] type mismatch: wanted integer, got string instead

2009-08-24 Thread MSulchan Darmawan
Pada Mon, 24 Aug 2009 23:00:07 -0600
Dimitris Anogiatis dos...@gmail.com menulis:

 this way iRain would always have an integer and you wouldn't have to
 worry about
 the mismatch error... assuming 0, 1, 2, x, - and NULL are
 the only values
 used in your database.

Thanks Dimitris and JY,

Unfortunately, the possible values are more then that, it's just a
sample.
The values are amount of rainfall data, so it has numbers (0 to 400)
also with floating number 0.5, 1.7, and so on.
The field of old data on the database was set with string type, which
x represent as a value less then 0.5, - represent as no rain, and
NULL represent as no data.

So, for temporary solution, I'll use TRY statement to exclude x, -,
and NULL, but the problem is with the floating number.
I don't know how to handle this yet.
any idea how to solve this ?

thanks in advance,
Regards,
Sulchan


signature.asc
Description: PGP signature
--
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user