12-04-2014, 06:59 AM
This will populate notepad with random numbers and characters.
Macro Random for Notepad
for form you could search on this site for some examples like this one:
Example: parse text file (table) and populate web form
Could this be done with a macro, or require programming?
Macro Random for Notepad
run "notepad.exe"
wait 0 WA win("Notepad" "Notepad")
;Generate random number from 1-9999
rep 10
,outp RandomInt(1 9999)
,'Y
outp "----[]"
;Generate random character from a-z
rep 10
,outp _s.RandomString(1 1 "a-z")
,'Y
Example: parse text file (table) and populate web form
Could this be done with a macro, or require programming?