[Gambas-user] Sdl.sound and Qt dependencies not satisfiable

2009-03-25 Thread jbskaggs

I am running ubuntu 8.10 64 bit, Gambas 2.7 (highest packaged for 64bit 8.1).

I add the gb.sdl.sound and now cannot install packages because I get
Dependencies not satisfiable for gb.sdl.sound.

So I figured maybe I need to add gb.sdl but I can't because my program is qt
based and it says qt and sdl incompatible.

When I run my program without gb.sdl installed and with gb.sdl.sound
installed it runs fun from IDE. I can create executable, and I can package
it but I cannot install the package without the error popping about
dependencies.

All I want to do is have a wav file played without having to call an
external shell.

How can I do that with qt?  Or how do I fix this dependency issue?


JB SKaggs
-- 
View this message in context: 
http://www.nabble.com/Sdl.sound-and-Qt-dependencies-not-satisfiable-tp22696057p22696057.html
Sent from the gambas-user mailing list archive at Nabble.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


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 Laurent Carlier
Le mercredi 25 mars 2009 16:07:11 M0E.lnx, vous avez écrit :
 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?

I guess, in these cases, you can use the Val() function.

http://64.128.110.55/help/lang/val

Regards,


--
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 Ron
Laurent Carlier schreef:
 Le mercredi 25 mars 2009 16:07:11 M0E.lnx, vous avez écrit :
 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?
 
 I guess, in these cases, you can use the Val() function.
 
 http://64.128.110.55/help/lang/val
 
 Regards,
 

Do a replace to remove the . then 12 is less(older) then 135.

Regards,
Ron_2nd.

--
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 Jesus Guardon
Hi all

This is the way I did it:

First, I've setup an asynchronous httpclient.


PUBLIC SUB _getVer_Finished()
 DIM myVersion, verUpdate AS Integer
 DIM sMyVer AS String = 1  Replace(Application.Version, ., )

 ver = 1  Replace(ver, ., )

 myVersion = CInt(sMyVer)

 IF ver THEN verUpdate = CInt(ver)

 IF verUpdate  myVersion THEN
 IF Message.Question((There is a new version of 
yourProgram.\nDo you want to visit the download page?), (Yes), No) 
= 2 THEN RETURN
 Desktop.Open(http://yourProjectWebPage.com;)
 ENDIF
END

Regards

Jesús

M0E.lnx escribió:
 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?
 
 


--
___
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] Sdl.sound and Qt dependencies not satisfiable

2009-03-25 Thread jbskaggs

I have discovered that Gambas2 for ubuntu does not have a
gambas2-gb-sdl-sound package like the other distros.  

BUT I can install my program with dpkg -i and it works fine and accesses the
sdl.sound drivers okay.

Although the Ubuntu system keeps pointing out that my program package is
broken. (such as the synaptic package manager)

Is this a bug in Ubuntu 8.1 or what am I missing?

JB SKaggs


jbskaggs wrote:
 
 I am running ubuntu 8.10 64 bit, Gambas 2.7 (highest packaged for 64bit
 8.1).
 
 I add the gb.sdl.sound and now cannot install packages because I get
 Dependencies not satisfiable for gb.sdl.sound.
 
 So I figured maybe I need to add gb.sdl but I can't because my program is
 qt based and it says qt and sdl incompatible.
 
 When I run my program without gb.sdl installed and with gb.sdl.sound
 installed it runs fun from IDE. I can create executable, and I can package
 it but I cannot install the package without the error popping about
 dependencies.
 
 All I want to do is have a wav file played without having to call an
 external shell.
 
 How can I do that with qt?  Or how do I fix this dependency issue?
 
 
 JB SKaggs
 

-- 
View this message in context: 
http://www.nabble.com/Sdl.sound-and-Qt-dependencies-not-satisfiable-tp22696057p22707549.html
Sent from the gambas-user mailing list archive at Nabble.com.


--
___
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 Gianni Piccini
On Tue, 24 Mar 2009 15:49:15 -0500 M0E.lnx m0e@gmail.com wrote:

 and since it's anon access, I figured I'd leave the user and pass
 properties empty.

Sure? If I don't err, you should put anonymous as user and your email
(or fake email) for password...

--
___
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


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

2009-03-25 Thread Rob
On Wednesday 25 March 2009 13:54, M0E.lnx wrote:
 I guess I would have thoutht there was something that could analize
 something like 2.12 and 2.5 as floats and see which one is the
 largest of the 2

Well, the problem with that is that 2.5 really is the larger of the two if 
you treat them as floats, but is the earlier version number in the 
numbering schemes that are currently in fashion.

Rob

--
___
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 Dimitris Anogiatis
Just brainstorming here, but if you add format the float in a 2 decimal
string then replace . with 
and reconvert the string to an integer you might be able to get the right
kind of comparison results.
like 2.05  and 2.10 would turn into 205 and 210 In which case using max
would give you the latter
as the larger of the two.

In the case of 2.05a and 2.05c then you'd prolly have to see which string
is the larger of the two. I'd use a simple IF a  b then print b else print
a
kind of statement or the comp function to compare the 2 strings.

Hope this helps
Dimitris

Wed, Mar 25, 2009 at 7:36 PM, Rob sourceforge-raind...@kudla.org wrote:

 On Wednesday 25 March 2009 13:54, M0E.lnx wrote:
  I guess I would have thoutht there was something that could analize
  something like 2.12 and 2.5 as floats and see which one is the
  largest of the 2

 Well, the problem with that is that 2.5 really is the larger of the two if
 you treat them as floats, but is the earlier version number in the
 numbering schemes that are currently in fashion.

 Rob


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

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