Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Generate random alphanumeric password

Status
Not open for further replies.

ksfmohamed

IS-IT--Management
Aug 7, 2012
1
0
0
KW
How to generate random alpha numeric character in powerpuilder???

Please find the below source. Its working fine.

Randomize (CPU ())
string ls_disp, ls_code = ''
String ls_passval[70] = {'a','b','c','d','e','f','g','h','i','j','k','l','m','n','o','p','q','r','s','t','u','v','w','x','y','z','A','B','C','D','E','F','G','H','I','J','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','1','2','3','4','5','6','7','8','9','0'}
integer ls_limit
ls_limit = 10

DO WHILE (Len(ls_code) < ls_limit)
ls_code = ls_code + ls_passval[rand(65)+1]
LOOP
ls_disp = ls_code


 


it's working well .. and thnx for sharing your idea ..


also can you pls give same exampls to use it !!


thnx in all
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top