Re: [Gambas-user] We should offer online Gambas courses!

2009-03-30 Thread M0E.lnx
This sounds like a good idea, and I would support it if there were people 
interested.

I tried something similar @ our vectorlinux forums where I offered to help 
anyone as much as I could get on the road with gambas.

Did not pick up a whole lot of interested people, as I remember, only 2 people 
really got into it. One of them was able to write an application. The other one 
was getting really deep into the documentation before he got to the IDE, and 
something happened in his family, so he dropped it.

I like the idea, I really think there is definitely a market for gambas in 
linux development, but dont expect to get a whole lot of interest. And i'm not 
being pesimistic, but rather realistic.

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


Re: [Gambas-user] My first rodeo in using the network component

2009-03-27 Thread M0E.lnx
But there has to be a way to do this using gambas objects, at least I would 
imagine.

Of couse, I could use external commands to to get the results I want.
Like curl -G url
store the output in a string or string[] and work my way off of there.

but I was kind of hoping there was a way to do this internally using pure 
gambas objects/code.

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


Re: [Gambas-user] My first rodeo in using the network component

2009-03-25 Thread M0E.lnx
But it's not even reporting an authentication error... It doesn't even try to 
connect.

All I need it to do is to get me something like the result of curl -G 
ftp://ftp.some.ftp.site.com/;

--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


[Gambas-user] analyzing version numbers in gambas

2009-03-25 Thread M0E.lnx
I need a way to logically analize version numbers in gambas.

For instance, I have a list of available versions of the same program, let's 
say the list is

1.2
1.4
1.6
1.10
1.16
1.20
1.35
1.5
1.3
1.1

These are of course in no particular order. A human knows that out of all of 
these, version 1.35 would be the greater value. 

How can I make gambas analyze this?


-- 


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user


Re: [Gambas-user] analyzing version numbers in gambas

2009-03-25 Thread M0E.lnx
The replace(.,) thing works, but it rus into problems with you get to 
something like 1.3b vs 1.3c

Some developers have a different way of numbering their releases.

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


Re: [Gambas-user] analyzing version numbers in gambas

2009-03-25 Thread M0E.lnx
Yeah... and like I said, this works, but

I'm not dealing with my own version numbering here... I'm trying to analize all 
versioning schemes if at all possible.

I guess I could split the version string into an array and figure out manually 
from there... But I was kind of hoping not to do that. ;)

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


Re: [Gambas-user] My first rodeo in using the network component

2009-03-25 Thread M0E.lnx
Even after feeding it user name and passwords, the peek() method returns nothing

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


[Gambas-user] My first rodeo in using the network component

2009-03-24 Thread M0E.lnx
So i've decided to try out the network component in gambas.

I'm trying to get a listing of the contents of an FTP URL
so I'm using a FTPclient object.
I've set it's .URL
and since it's anon access, I figured I'd leave the user and pass properties 
empty.

From what I read in the documentation, I should be able to use it's peek() 
method and it should return a string.

but it's not working... anyone ever done anything like this?

-- 


--
Apps built with the Adobe(R) Flex(R) framework and Flex Builder(TM) are
powering Web 2.0 with engaging, cross-platform capabilities. Quickly and
easily build your RIAs with Flex Builder, the Eclipse(TM)based development
software that enables intelligent coding and step-through debugging.
Download the free 60 day trial. http://p.sf.net/sfu/www-adobe-com
___
Gambas-user mailing list
Gambas-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/gambas-user