Do not let any software impress you!

Only let it convince your intellect.
Slider img 1
Do not look for a business paradise!

It is a waste of time.
Slider img 2
Only yourself can push you uphill.

There is no easy road to prizes.
Slider img 3
Productivity is the name of the game.

And you have to conquer it.
Slider img 4
As long as you understand it,

you will start to build your know-how.
Slider img 5
We can help with that.

We have the tools and the method.
Slider img 6
Procedure : AU_AUTOSCRIPT4

AutoScript

{..............calling a procedure example............}

lib {....required if there are more procedures and functions declared}
public {....required if there are more procedures and functions declared}

globals {....or locals!}

a = 10
a = Input("Input Form","a value",a)

call myproc(a)
return

{======================== myproc =======================}

proc myproc ( val )

     call message("val=",val)
     call message("a=",a)      {...if 'globals' is known if 'locals' unknown}

     if (val > 1000) then
        val = 1000
     endif

     for i = 1 to val
         call message("i=",i)
     next

end

{...end of procedure}