Application
(gb)
This
class gives information about the currently running application, and grant an access to the process environment and process command line.
Symbols
Example
Imagine you start a new project in
Gambas, you call this project "MyApplication", the comments are "This is the title of MyApplication", you save it at
/home/user/gambas/MyApplication, and you are writing the first version, that is, 0.0.1.
Special global event handlers
These
event handlers must be defined in the startup
class as static methods to be taken into account by the interpreter.
|
Application_Read
|
Catches data sent to the standard input.
If that static method is defined in the project startup class,
then the standard input is watched by the interpreter, and the method is
called each time there is something to read on the standard input.
|