所以我正在做一个项目,允许用户在数据库中更改他们的密码,这是代码的后一个阶段,他们必须再次输入正确的密码才能更改,它不起作用如下:
if tblusers.locate('StudentID', sStudentID,[]) then
begin
if soldpass = tblusers['Password'] then
else
begin
showmessage('Incorrect Current Password');
exit;
end;
tblusers.edit;
tblusers['Password'] := snewpass;
if snewpass <> sreenter then
begin
showmessage('Re-Enter your Password correctly');
edtreenter.clear;
exit;
end
else
tblusers.post;
showmessage('Password Successfully Changed');
end;
问题是最后一条if语句不能正常工作,因为他们可以重新输入一个完全不同的密码,但它仍然会更改它
2条答案
按热度按时间mctunoxg1#
您必须使用小写和大写字母。您的短信很难理解,请不要为不同的短信类型使用相同的词语。
mepcadol2#
因此,在咨询了我父亲和他帮助我改进我的代码后,我修复了这个问题。这是一个有效的新代码: