[Gambas-user] [Gambas Bug Tracker] Bug #903: Bash-like "source" command for gbs3

2016-03-21 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.903&from=L21haW4- Comment #6 by Fabien BODARD: Well it's because it's only scripter preprocessing keywords... not official language... i need to find somewhere to put that. ---

Re: [Gambas-user] Show files in a FileView wit limited file size

2016-03-21 Thread Fabien Bodard
This is not possible for now. An idea will be to add an event that allow to validate files or not. 2016-03-21 17:00 GMT+01:00 abbat81 : > Is there any way to show files in FileView with limited size? > For example, I need to show files <100Mb? > > Thanks in advance > > > > -- > View this message

[Gambas-user] [Gambas Bug Tracker] Bug #903: Bash-like "source" command for gbs3

2016-03-21 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.903&from=L21haW4- Comment #5 by C THAL: Wow! Great! But it lacks documentation. USE is documented here: http://gambaswiki.org/wiki/lang But INCLUDE seemed to be nowhere in the wiki. I did it here: http://gambaswiki.org/wiki/lang/include Please

[Gambas-user] Show files in a FileView wit limited file size

2016-03-21 Thread abbat81
Is there any way to show files in FileView with limited size? For example, I need to show files <100Mb? Thanks in advance -- View this message in context: http://gambas.8142.n7.nabble.com/Show-files-in-a-FileView-wit-limited-file-size-tp55742.html Sent from the gambas-user mailing list archiv

Re: [Gambas-user] Syntax highlighting in the wiki

2016-03-21 Thread Yahoo
Great Benoit. Email: olivier.cruil...@yahoo.fr > Le 21 mars 2016 à 02:53, Benoît Minisini a > écrit : > > Hi guys, > > You now have syntax highlighting in the wiki! > > This is a reimplementation of Tobias' idea, but it is automatically > handled by the gb.markdown component. > > To highli

[Gambas-user] [Gambas Bug Tracker] Bug #906: Improved: in the menu on the farm a search option programs made by users appear

2016-03-21 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.906&from=L21haW4- Julio SANCHEZ reported a new bug. Summary --- Improved: in the menu on the farm a search option programs made by users appear Type : Request Priority : Medium Gambas version : Unknown Product :

[Gambas-user] [Gambas Bug Tracker] Bug #903: Bash-like "source" command for gbs3

2016-03-21 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.903&from=L21haW4- Comment #4 by Fabien BODARD: OUPS ... INCLUDE NOT IMPORT !!! So to create a reusable class you have to define it in the imported file for example. ===MyClassFile.gbs CLASS MyClass Static Public Functio

[Gambas-user] [Gambas Bug Tracker] Bug #903: Bash-like "source" command for gbs3

2016-03-21 Thread bugtracker
http://gambaswiki.org/bugtracker/edit?object=BUG.903&from=L21haW4- Comment #3 by Fabien BODARD: You can use INCLUDE for that. #!/bin/env gbs3 Private myVar as Integer INCLUDE "DBDef.gbs" MyConnectionFunction You can use the CLASS / END CLASS keywords to define a class too. So to creat