Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


To create a "Hello world" web application, you could drag and drop a push button onto a Web Page and then add code for the button click event to show an alert. The resulting code might look like the following:


Begin_Com

...

Role(*EXTENDS

...

#PRIM_WEB)
 

...


Define_Com

...

Class(#PRIM_PHBN)

...

Name(#Button)

...

Displayposition(1)

...

Left(63)

...

Parent(#COM_OWNER)

...

Tabposition(1)

...

Top(27)

...

Caption('Click

...

Here')

...

Height(50)

...

Width(150)

...



Evtroutine

...

Handling(#Button.Click)

...

 

...


...

#sys_web.alert(

...

"Hello

...

World"

...

)

...



Endroutine

...



End_Com

...


If you like, copy and paste this code and create your own Web Page, then from the Home ribbon, save and compile the Web Page.

...