Re: [Gambas-user] What's the best way to determine how a project was invoked?

2016-01-09 Thread adamn...@gmail.com
On Sat, 9 Jan 2016 22:56:10 +0100 Benoît Minisini wrote: > Le 09/01/2016 22:51, adamn...@gmail.com a écrit : > > > > On another tack, the gb.Args Args class help page contains the line: > > "Return non-options as arguments." > > > > What does that mean? > > > > Bad english of mine... It means th

Re: [Gambas-user] What's the best way to determine how a project was invoked?

2016-01-09 Thread Benoît Minisini
Le 09/01/2016 22:51, adamn...@gmail.com a écrit : > > On another tack, the gb.Args Args class help page contains the line: > "Return non-options as arguments." > > What does that mean? > Bad english of mine... It means that Args.End() will return a string array of all arguments that were not inte

Re: [Gambas-user] What's the best way to determine how a project was invoked?

2016-01-09 Thread adamn...@gmail.com
On Sat, 9 Jan 2016 22:35:24 +0100 Benoît Minisini wrote: > Le 09/01/2016 22:28, adamn...@gmail.com a écrit : > > We have a set of "tools" that we use with Gambas. They are generally > > stand alone and are invoked "by hand" and at startup the user selects > > the Gambas source project to "attach"

Re: [Gambas-user] What's the best way to determine how a project was invoked?

2016-01-09 Thread Benoît Minisini
Le 09/01/2016 22:28, adamn...@gmail.com a écrit : > We have a set of "tools" that we use with Gambas. They are generally > stand alone and are invoked "by hand" and at startup the user selects > the Gambas source project to "attach" to. Now I want to provide some > integration between them, i.e. al

[Gambas-user] What's the best way to determine how a project was invoked?

2016-01-09 Thread adamn...@gmail.com
We have a set of "tools" that we use with Gambas. They are generally stand alone and are invoked "by hand" and at startup the user selects the Gambas source project to "attach" to. Now I want to provide some integration between them, i.e. allow Tool_B to be invoked from a Tool_A menu or button.