- Home
·
- Math/Dates
·
- This code generates random hex numbers (is a fix of Shadab's code which is probably right below thi
This code generates random hex numbers (is a fix of Shadab's code which is probably right below thi
This code generates random hex numbers (is a fix of Shadab's code which is probably right below this snippet)
Rate This code generates random hex numbers (is a fix of Shadab's code which is probably right below thi
(1(1 Vote))
Dim a As Integer
a = 10 ' Number of hexadecimal numbers
HexGenerate (a)
End Sub
Function HexGenerate(intNum As Variant)
Dim i As Integer
For i = 1 To intNum
Randomize
intNum = Hex$((1000 * Rnd) + 1)
Print intNum
Next
End Function
This code generates random hex numbers (is a fix of Shadab's code which is probably right below thi Comments
No comments yet — be the first to post one!
Post a Comment