Jump to content

Recommended Posts

Posted

I'm trying to make the conversion from c++ to autoit with arrays. Even then that was some time ago.

Pardon the seudo code.

$Name [4] = ( "John", "Paul", "Ringo", "George" )

$Rnd = Random(1, 4, 1)

msgBox(0, "Favorite Beatle", "You like " & $Name[$Rnd] )

Thanks for the help with a silly question.

Jesse

Posted

Dim $Name[4] = ["John", "Paul", "Ringo", "George"]
$Rnd = Random(0, 3, 1)
MsgBox(0, "Favorite Beatle", "You like " & $Name[$Rnd])
Awsome. Thanks for that!

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
  • Recently Browsing   0 members

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