









|
Hello world
According to Wikipedia “A ‘hello world’ program is a computer program that prints out ‘Hello, World!’ on a display device. It is used in many introductory tutorials for teaching a programming language”
You can download the application from here
- Make a new application
- Insert an Iconbar event handler
-
Amend the event-handler's code to
DEF PROCDealWith_Iconbar(event,object,component)
CASE event OF
WHEN Iconbar_Clicked : PROCUtils_Alert(“Hello world”)
ENDCASE
ENDPROC
|
|
Utils_Alert
|
|
The Utils_Alert procedure is an AppBasic utility which displays a standard alert box on the desktop. Its library listing can be found via AppBasic's main window:
- Select the Utils library pane
- Select the Alert dbox icon
- Select the PROCUtils_Alert link
- Select the “pencil” icon to enter command at the caret in a text-editor window.
|
|