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!

Powerbuilder 6.0 - Password attemp and lock

Status
Not open for further replies.

fathee

Programmer
Apr 28, 2017
3
0
0
Hi all,

this code is for check login was valid or not. My question is how to add in for 3 attempt failed and system will lock duration for 30minutes. Kindly help me to give a sample.

Thanks.
----------------------------------------------------------------------------------------------------------------------
// Check whether login user is valid
IF gnv_app.Uf_Verify_Login(gnv_app.is_userid , ls_enterlogpass_enc) <> 1 THEN
MessageBox("Login Error", "Invalid Login ID or Password", StopSign!)
dw_1.SetFocus()
RETURN -1
END IF
// Check User Account whether has been expired.
IF gnv_app.Uf_Is_ActiveUser(gnv_app.is_userid) = FALSE THEN
MessageBox("Access Denied" , "Your account has been inactive.")
dw_1.SetFocus()
RETURN -1
END IF
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top