[Gambas-user] [Gambas Bug Tracker] Bug #774: Is there a way to get a saved session ?

2015-09-29 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.774=L21haW4- Fabien BODARD reported a new bug. Summary --- Is there a way to get a saved session ? Type : Request Priority : Medium Gambas version : Unknown Product : Bugtracker Description --- For

[Gambas-user] [Gambas Bug Tracker] Bug #775: Preprocessor Macros

2015-09-29 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.775=L21haW4- Fabien BODARD reported a new bug. Summary --- Preprocessor Macros Type : Request Priority : Medium Gambas version : Unknown Product : Language Description --- For memory I'd like to

[Gambas-user] [Gambas Bug Tracker] Bug #774: Is there a way to get a saved session ?

2015-09-29 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.774=L21haW4- Benoît MINISINI changed the state of the bug to: Invalid. -- ___ Gambas-user mailing list

[Gambas-user] [Gambas Bug Tracker] Bug #774: Is there a way to get a saved session ?

2015-09-29 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.774=L21haW4- Comment #1 by Benoît MINISINI: If you can login on a website, then there is a session. Don't remove your cookies when you close the browser if you want to keep it available. See the documentation of the Session class on the wiki.

[Gambas-user] Question

2015-09-29 Thread Moviga Technologies
Property Read {Map} As Map What are the brackets doing? -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net

Re: [Gambas-user] Question

2015-09-29 Thread ML
If I'm correct, it means that the compiler should take the specified string as an identifier and not as a reserved word or class. In this case, the string is 'Map'. Looks like the Map property ("{Map}") returns a Map (As Map) object. Sneaky! On 2015-09-29 12:26, Moviga Technologies wrote: >

Re: [Gambas-user] MaskBox bug?

2015-09-29 Thread Tobias Boege
On Tue, 29 Sep 2015, Peter Roc wrote: > >Greetings. > >New to gambas and since I have a small project to develop decided to study >the language. Version 3.8.1 >While using a MaskBox with the Mask [0-9], inserting 0 it turns out that >it's not displayed, I can see the cursor

Re: [Gambas-user] Question

2015-09-29 Thread adamn...@gmail.com
On Tue, 29 Sep 2015 21:18:40 +0200 Tobias Boege wrote: > On Tue, 29 Sep 2015, Jussi Lahtinen wrote: > > How does the mapviewer work..? I get only empty view, and quickly I don't > > see way to define the map. > > > > I believe we have a gb.map example using MapView here[0],

Re: [Gambas-user] MaskBox bug?

2015-09-29 Thread Fabien Bodard
The bug is fixed In svn Le 30 sept. 2015 00:26, "Tobias Boege" a écrit : > On Tue, 29 Sep 2015, Peter Roc wrote: > > > >Greetings. > > > >New to gambas and since I have a small project to develop decided to > study > >the language. Version 3.8.1 > >While using

Re: [Gambas-user] Question

2015-09-29 Thread Tobias Boege
On Tue, 29 Sep 2015, Moviga Technologies wrote: > > > Property Read {Map} As Map > > What are the brackets doing? They tell the compiler to treat the bracketed string as an identifier. This is documented here[0]. Since there apparently is a class named "Map" already, it might cause trouble

Re: [Gambas-user] Question

2015-09-29 Thread Moviga Technologies
Thank all of you for clarifying that! -- ___ Gambas-user mailing list Gambas-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/gambas-user

Re: [Gambas-user] Question

2015-09-29 Thread Fabien Bodard
2015-09-29 18:04 GMT+02:00 Tobias Boege : > On Tue, 29 Sep 2015, Moviga Technologies wrote: >> >> >> Property Read {Map} As Map >> >> What are the brackets doing? > > They tell the compiler to treat the bracketed string as an identifier. This > is documented here[0]. Since there

Re: [Gambas-user] Question

2015-09-29 Thread Fabien Bodard
Mapviewer is in the gb.map component 2015-09-29 20:12 GMT+02:00 Moviga Technologies : > > > Thank all of you for clarifying that! > -- > ___ > Gambas-user

Re: [Gambas-user] Question

2015-09-29 Thread Jussi Lahtinen
How does the mapviewer work..? I get only empty view, and quickly I don't see way to define the map. Jussi On Tue, Sep 29, 2015 at 9:41 PM, Fabien Bodard wrote: > Mapviewer is in the gb.map component > > 2015-09-29 20:12 GMT+02:00 Moviga Technologies :

Re: [Gambas-user] Question

2015-09-29 Thread Tobias Boege
On Tue, 29 Sep 2015, Jussi Lahtinen wrote: > How does the mapviewer work..? I get only empty view, and quickly I don't > see way to define the map. > I believe we have a gb.map example using MapView here[0], German though. Scroll all the way down the page to find the download section. Regards,

[Gambas-user] MaskBox bug?

2015-09-29 Thread Peter Roc
Greetings. New to gambas and since I have a small project to develop decided to study the language. Version 3.8.1 While using a MaskBox with the Mask [0-9], inserting 0 it turns out that it's not displayed, I can see the cursor moving, and only a space is left. Is it an