09-11-2008, 11:26 PM
(This post was last modified: 09-11-2008, 11:27 PM by kishoreinchennai.)
Why Not use Randomize and RND function which will give you a unique Number every time you call.
i used this in my code:
it throws me a unique client number everytime i run the test....
Interestingly RND Works exactly the way you have described in your 3rd paragraph
Regards
Kishore
i used this in my code:
Code:
Randomize
Environment.Value("Client_No_Random")=Int((9999999 - 1111111 + 1) * Rnd) + 1111111
it throws me a unique client number everytime i run the test....
Interestingly RND Works exactly the way you have described in your 3rd paragraph
Regards
Kishore