C cyndi_blue Unregistered / Unconfirmed GUEST, unregistred user! 2007-04-26 #1 我的意思是,我在添加一条新记录的时候,在关键字edit旁边弄个按钮,用来检查关键字是否已经存在。就像我们注册的时候检查用户名是否已经被别人使用了一样的道理。如何判断,能否给代码? 我的全部家当全压了。。。急救~!
我的意思是,我在添加一条新记录的时候,在关键字edit旁边弄个按钮,用来检查关键字是否已经存在。就像我们注册的时候检查用户名是否已经被别人使用了一样的道理。如何判断,能否给代码? 我的全部家当全压了。。。急救~!
G guanyue7613 Unregistered / Unconfirmed GUEST, unregistred user! 2007-04-26 #2 在edit的OnChange事件中去查询数据库,看有没有返回值
L lisongmagic Unregistered / Unconfirmed GUEST, unregistred user! 2007-04-26 #4 procedure TForm1.Button1Click(Sender: TObject); begin with ADOQuery1 do begin close; sql.Text:= 'select * from Table where ID ='+ QuotedStr(Edit1.Text); open; if not IsEmpty then ShowMessage('已经有过了'); end; end;
procedure TForm1.Button1Click(Sender: TObject); begin with ADOQuery1 do begin close; sql.Text:= 'select * from Table where ID ='+ QuotedStr(Edit1.Text); open; if not IsEmpty then ShowMessage('已经有过了'); end; end;