m0rphling Posted September 5, 2004 Posted September 5, 2004 Hello, I'm still kind of new to AutoIt. I was wondering if there was a simple way to generate a random 16 digit number and then send it to a text box/notepad file.
Developers Jos Posted September 5, 2004 Developers Posted September 5, 2004 Hello, I'm still kind of new to AutoIt. I was wondering if there was a simple way to generate a random 16 digit number and then send it to a text box/notepad file. <{POST_SNAPBACK}>$Key = "" For $x=1 to 16 $Key = $Key & int(Random() * 10) Next FileWriteLine("outputfile.txt",$Key) SciTE4AutoIt3 Full installer Download page - Beta files Read before posting How to post scriptsource Forum etiquette Forum Rules Live for the present, Dream of the future, Learn from the past.
m0rphling Posted September 5, 2004 Author Posted September 5, 2004 Thank you very much! That's exactly what I've been looking for. I greatly appreciate your benevolent information.
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now