Jump to content

How to create a Function?


Recommended Posts

I am trying to learn how to create a function. I tried:

CODE
Func Hello ()

MsgBox (0, "", "Hello World!")

Return

EndFunc

However, when I run the script nothing happens (no errors, no message box appear.... absolutely nothing...).

What am I doing wrong?

Thanks.

Regards.

MLMK - my blogging craziness...
Link to comment
Share on other sites

You didn't call the function! Add Hello () at the top then see... :)

EDIT: Like This:

Hello()

Func Hello()
    MsgBox(0, "", "Hello World!")
    Return
EndFunc  ;==>Hello
Edited by Bert
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...