Search found 220 matches

by jornmo
Sunday 12th February 2017 12:41pm
Forum: General
Topic: gb.args - alternate form of usage.
Replies: 8
Views: 10760

Re: gb.args - alternate form of usage.

@cogier: if you want to convert an array to a string, you can always use .Join. No need to use a loop :)
by jornmo
Sunday 12th February 2017 11:52am
Forum: General
Topic: gb.args - alternate form of usage.
Replies: 8
Views: 10760

Re: gb.args - alternate form of usage.

Well, you will lose the benefit of getting useful information from using --help and you are also only getting the long option names. The last can easily be solve by adding
Select strTemp
        Case "--help", "-h"
          DisplayHelp()
        [...]
by jornmo
Saturday 4th February 2017 5:11pm
Forum: General
Topic: Did you know?
Replies: 91
Views: 405663

Re: Did you know?

I might have tried it a long time ago since it is the same in Lazarus, but I prefer F2. F2 does the same thing - shows help on Gambas stuff, and takes you to the declaration on other stuff :)
by jornmo
Saturday 4th February 2017 9:34am
Forum: General
Topic: Normally distributed curve formula
Replies: 12
Views: 18811

Re: Normally distributed curve formula

I forgot to mention here that this was the end result of the challenge: viewtopic.php?f=6&p=42&sid=92342bfd96f1 ... 797d91#p42

Had some help of a friend with a PhD :)
by jornmo
Thursday 2nd February 2017 9:53am
Forum: Lounge
Topic: Raspberry Pi update
Replies: 9
Views: 13564

Re: Raspberry Pi update

I am giving it a try. The Gambas packager failed to create an install file on my laptop in Manjaro. Trying my other PC with Arch now. @Cogier, I realise you went for the wrong app. It is not the Innova Panel, but just Innova. The Panel is to be used inside the Innova DE :)
by jornmo
Wednesday 1st February 2017 8:50pm
Forum: Lounge
Topic: Raspberry Pi update
Replies: 9
Views: 13564

Re: Raspberry Pi update

Do you have to run this DE from within a DE or can you go directly from TTY?
by jornmo
Wednesday 1st February 2017 12:53pm
Forum: Lounge
Topic: You are welcome
Replies: 13
Views: 19394

Re: You are welcome

I have had my fair share of frustration learning several little documented features through the years myself :) The plan is to use the front page for articles covering such things. You are welcome to write an article on the gb.settings component ;)
by jornmo
Wednesday 1st February 2017 12:03pm
Forum: Lounge
Topic: You are welcome
Replies: 13
Views: 19394

Re: You are welcome

You are very welcome Casper!
by jornmo
Sunday 22nd January 2017 4:00pm
Forum: General
Topic: Did you know?
Replies: 91
Views: 405663

Re: Did you know?

How is your understanding of object oriented programming ? A class file in Gambas represents the blue print of an object, while a module file represents a static class. When you've made a class in Gambas, you can create objects from it with Private $myObject = New MyClass As "EventName" In...
by jornmo
Wednesday 18th January 2017 4:20pm
Forum: General
Topic: Did you know?
Replies: 91
Views: 405663

Re: Did you know?

_n is the equivalent of a constructor in other languages. It sort of initialises an object when it is created, i.e. it is called each time you use the NEW keyword.