04-05-2011, 02:14 AM
Hi Ann,
you can store the candidate (with random number) and then use the same for login again.
Please let me know if you need any more info.
you can store the candidate (with random number) and then use the same for login again.
Code:
strCandidate = "supputuri"
RanNumber = RandomNumber(0,1000)
'Now appending the random number to the candidate.
LoginCandidate = strCandidate & RanNumber
msgbox LoginCandidate
' now we have the candidate infor in the "LoginCandidate" variable and can use the same. (we can do it with out using strCandidate too)
Please let me know if you need any more info.
Thanks,
SUpputuri
SUpputuri