Re: [Gambas-user] Base 64 question

2011-04-28 Thread Fabien Bodard
2011/4/28 Caveat : > xml.Decode...pfft!  Funny, I never would have thought to look in gb.xml > for a base64 decoder! true ... i've found it in the past when i've made a little program to extract mail attachement in old mail directories > Anyhoo, did you compare xml.Decode and the routine below w

Re: [Gambas-user] Gambas 3 not out yet?

2011-04-28 Thread Ian Haywood
On Fri, Apr 29, 2011 at 1:53 PM, John Spikowski wrote: > On Thu, 2011-04-28 at 22:22 -0400, Keith Clark wrote: >> I've just installed Ubuntu 11.04 and Gambas 3 is still not included in >> this popular distro? >> >> Maybe I'm not updating correctly or something. > > Keith, > > You will have to buil

Re: [Gambas-user] Gambas 3 not out yet?

2011-04-28 Thread John Spikowski
On Thu, 2011-04-28 at 22:22 -0400, Keith Clark wrote: > I've just installed Ubuntu 11.04 and Gambas 3 is still not included in > this popular distro? > > Maybe I'm not updating correctly or something. Keith, You will have to build from svn till Gambas 3 RC1 is released. (watch for the icon on th

[Gambas-user] Gambas 3 not out yet?

2011-04-28 Thread Keith Clark
I've just installed Ubuntu 11.04 and Gambas 3 is still not included in this popular distro? Maybe I'm not updating correctly or something. Keith -- WhatsUp Gold - Download Free Network Management Software The most intu

Re: [Gambas-user] Issue 62 in gambas: No way to rename project

2011-04-28 Thread gambas
Updates: Status: WontFix Labels: -Version Version-2.23.0 Comment #1 on issue 62 by benoit.m...@gmail.com: No way to rename project http://code.google.com/p/gambas/issues/detail?id=62 Just rename the directory that contains the project, that's all. ---

[Gambas-user] Issue 62 in gambas: No way to rename project

2011-04-28 Thread gambas
Status: New Owner: Labels: Version Type-Bug Priority-Medium OpSys-Any Dist-Any Arch-Any Desktop-Any GUI-Any New issue 62 by richard@gmail.com: No way to rename project http://code.google.com/p/gambas/issues/detail?id=62 1) It is impossible to rename a project. 2) GIVE THE FOLLOWING IN

Re: [Gambas-user] Base 64 question

2011-04-28 Thread richard terry
On Friday 29 April 2011 00:57:17 Caveat wrote: > xml.Decode...pfft! Funny, I never would have thought to look in gb.xml > for a base64 decoder! > > Anyhoo, did you compare xml.Decode and the routine below with the decode > function I wrote in the example project I sent earlier... or are you > *st

Re: [Gambas-user] Gambas 2 IDE different with running issue

2011-04-28 Thread Ondrej Beranek
sry, property has name "(Scaled)" 2011/4/28 nando > Wow, I didn't see that! > Silly me. > Thanks! > > > -- Original Message --- > From: Ondrej Beranek > To: nand...@nothingsimple.com, mailing list for gambas users > > Sent: Thu, 28 Apr 2011 07:25:19 +0200 > Subject: Re: [Gamba

Re: [Gambas-user] Base 64 question

2011-04-28 Thread Jussi Lahtinen
Maybe "wait" is for refreshing progress bar or similar... Jussi On Thu, Apr 28, 2011 at 17:57, Caveat wrote: > xml.Decode...pfft! Funny, I never would have thought to look in gb.xml > for a base64 decoder! > > Anyhoo, did you compare xml.Decode and the routine below with the decode > functio

Re: [Gambas-user] Using a listbox in gambas 2

2011-04-28 Thread Matti
But you seem to have internet on another machine, do you? http://gambasdoc.org/help/comp/gb.qt/listbox Am 28.04.2011 18:18, schrieb Christian DaGeek247 Stephens: > *I have gambas installed on a pc that does not have internet. The > documentation included in the install does not have any info on l

[Gambas-user] Using a listbox in gambas 2

2011-04-28 Thread Christian DaGeek247 Stephens
*I have gambas installed on a pc that does not have internet. The documentation included in the install does not have any info on listboxes. I have some questions. How do I add a item into a listbox? How do I read a line of text from a listbox? How do I delete an item from the listbox? Thanks for y

Re: [Gambas-user] Base 64 question

2011-04-28 Thread Caveat
xml.Decode...pfft! Funny, I never would have thought to look in gb.xml for a base64 decoder! Anyhoo, did you compare xml.Decode and the routine below with the decode function I wrote in the example project I sent earlier... or are you *still* waiting for my decode function to return a result? lol

Re: [Gambas-user] Base 64 question

2011-04-28 Thread richard terry
On Thursday 28 April 2011 21:50:55 richard terry wrote: I've tried them both the xml reader and the subroutine below, on a real-life file, a hl7 file containg a pdf of a vascular result this code written by Christer Nygren and some others, on my machine seems considerably faster than the xm

Re: [Gambas-user] Base 64 question

2011-04-28 Thread richard terry
On Thursday 28 April 2011 21:38:52 Fabien Bodard wrote: > Print XmlReader.Decode("strvalue", "Base64") Funny that, I based my head against a wall trying exactly that syntax, I eventually found some old gambas code on the web that worked. But... just typed it in again, and it works. Dunno.

Re: [Gambas-user] Base 64 question

2011-04-28 Thread Fabien Bodard
Print XmlReader.Decode("strvalue", "Base64") 2011/4/28 richard terry : > On Thursday 28 April 2011 20:16:31 Fabien Bodard wrote: > I tried  this: >  XmlReader.Decode(data, "?" > > what goes in the encoding type "?" > > I looked on the website to no avail > I tried strings like "Base64", "b

Re: [Gambas-user] Base 64 question

2011-04-28 Thread Fabien Bodard
Dim hr As New XmlReader Print hr.Decode("kjshkjshskshjskh", "Base64") :) !!! 2011/4/28 Caveat : > Huh?  The files are not (afaik) xml. > > Does gb.xml have some hidden feature that decodes a base64 file to its > binary equivalent? > > Could you maybe expand just a little on your 8-character

Re: [Gambas-user] Base 64 question

2011-04-28 Thread richard terry
On Thursday 28 April 2011 20:16:31 Fabien Bodard wrote: I tried this: XmlReader.Decode(data, "?" what goes in the encoding type "?" I looked on the website to no avail I tried strings like "Base64", "base64" etc couldn't figure it out. any hlep appreciated. Richard > gb.xml ! >

Re: [Gambas-user] Base 64 question

2011-04-28 Thread Caveat
Huh? The files are not (afaik) xml. Does gb.xml have some hidden feature that decodes a base64 file to its binary equivalent? Could you maybe expand just a little on your 8-character response? ;-) On Thu, 2011-04-28 at 12:16 +0200, Fabien Bodard wrote: > gb.xml ! > > 2011/4/28 Caveat : > > Hi

Re: [Gambas-user] Base 64 question

2011-04-28 Thread Fabien Bodard
gb.xml ! 2011/4/28 Caveat : > Hi Richard, > > I don't know of any base64 decode function in Gambas, but then I didn't > look that hard ;-) > > There are various different flavours of base64, so be sure you know > which variant you're dealing with. > > I enclose with this mail a source archive of a

Re: [Gambas-user] Eval error

2011-04-28 Thread Caveat
Yup, seems I can confirm the bug. Works OK in ubuntu 10.10, but not 11.04. In both systems, looking at Application.Env I get: GDM_LANG: en_US.utf8 and LANG: en_US.utf8 Regards, Caveat On Thu, 2011-04-28 at 10:12 +0200, JUHASZ Robert wrote: > Yes, it's beta and I only did the upgrade, changed n

Re: [Gambas-user] Eval error

2011-04-28 Thread JUHASZ Robert
Yes, it's beta and I only did the upgrade, changed nothing else. Robi -Original Message- From: Caveat Reply-to: gam...@caveat.demon.co.uk, mailing list for gambas users To: mailing list for gambas users Subject: Re: [Gambas-user] Eval error Date: Thu, 28 Apr 2011 09:25:47 +0200 11.04

Re: [Gambas-user] Gambas 2 IDE different with running issue

2011-04-28 Thread nando
Wow, I didn't see that! Silly me. Thanks! -- Original Message --- From: Ondrej Beranek To: nand...@nothingsimple.com, mailing list for gambas users Sent: Thu, 28 Apr 2011 07:25:19 +0200 Subject: Re: [Gambas-user] Gambas 2 IDE different with running issue > set "expand" property

Re: [Gambas-user] Eval error

2011-04-28 Thread Caveat
11.04 is officially out (sometime) today, so I guess you're using a beta right now. You haven't changed locales along with upgrading, have you? On Thu, 2011-04-28 at 09:15 +0200, JUHASZ Robert wrote: > Hello, > > I recently upgraded to ubuntu 11.04. My Gambas is 2.21. > The eval function worked

[Gambas-user] Eval error

2011-04-28 Thread JUHASZ Robert
Hello, I recently upgraded to ubuntu 11.04. My Gambas is 2.21. The eval function worked well on 10.10 and before. Now Eval("1/2") gives good results (works with integers) but Eval("1.2/2") gives a syntax error (it seems not working with floats). Robi -