Re: [Gambas-user] gambas3 and web services

2011-06-20 Thread Caveat
I think this should be possible. I've worked with Web Services from out of java and c# and in its simplest form it's just a case of POSTing parameters on a request. In java you have the advantage of several tools which can read the WSDL for you and automatically generate client code with stubs fo

[Gambas-user] gb3 SDL functionality

2011-06-20 Thread Kevin Fishburne
Is there documentation for the gb3 SDL component? I'm looking for the Fill method but can't find it. For now I'll blit to an image and then blit that to the SDL window surface but it'd be nice to blit it directly. -- Kevin Fishburne Eight Virtues www: http://sales.eightvirtues.com e-mail: sa...

Re: [Gambas-user] arithmetic operations on dates and times

2011-06-20 Thread Kevin Fishburne
On 06/08/2011 10:27 PM, Kevin Fishburne wrote: > Alright, I wouldn't bother the list but this is blowing my mind a little > bit. > > The date and time in the game world should start at an arbitrary point > and be modified by the system clock on the server and a scale value > ((timebase + timeserver

Re: [Gambas-user] Class name bug.

2011-06-20 Thread Jussi Lahtinen
No, I can confirm this is bug. Autocompletion list do have both, but it forces to use upper case version. If you select lower case version, it will be changed automatically to upper case version. Gambas 3 rev 3888 @ Ubuntu 11.04 Jussi On Mon, Jun 20, 2011 at 22:47, Fabien Bodard wrote: > 201

Re: [Gambas-user] Class name bug.

2011-06-20 Thread Fabien Bodard
2011/6/20 Demosthenes Koptsis : > i think i found a small bug. > > i created a class cMachine and when i write code IDE auto-correct the > name to CMachine instead cMachine. > > Private hCompressor As CMachine > > Public Sub btnCreateObject_Click() > >  hCompressor = New CMachine > > End > > its

[Gambas-user] To wish list: Select with multiple variables

2011-06-20 Thread Jussi Lahtinen
I think I'm having short circuit in my brain, so this might be stupid suggestion... But I would like to see feature illustrated by following example: Select Case bVar1; bVar2; bVar3; iVar Case True; True; True; 1 To 10 'Do something Case False; True; True; 11 To 20 'Do somethin

Re: [Gambas-user] MyObject.Property vs MyObject.Variable

2011-06-20 Thread Bruce Bruen
On 20/06/11 15:20, Demosthenes Koptsis wrote: > Hi list, > > i study the objects these days and i saw that we can declare PUBLIC VARS > in a class and also PROPERTIES. > > So we can have code like > > PUBLIC X AS Integer > cThing.X > > or > > PROPERTY X AS Integer > cThing.X > > - I understand that

[Gambas-user] Class name bug.

2011-06-20 Thread Demosthenes Koptsis
i think i found a small bug. i created a class cMachine and when i write code IDE auto-correct the name to CMachine instead cMachine. Private hCompressor As CMachine Public Sub btnCreateObject_Click() hCompressor = New CMachine End -- Regards, Demosthenes Koptsis.

[Gambas-user] gambas3 and web services

2011-06-20 Thread Almanova Sistemi
Hallo to everyone, I am Massimo and I try to write a client software (in gambas 3) that use a web services. In other word the software send data with saop protocol an receive data with the same protocol. The information about the availebe services are described in a WSDL file. Now, hor Can I d