delphi7中判定两edit内容是否一致的语句

如题所述

if SameStr(Edit1.Text,Edit2.Text) then //分大小写
// if SameText(Edit1.Text,Edit2.Text) then //不分大小写
//空格在比较内容之内
begin

end;
温馨提示:内容为网友见解,仅供参考
第1个回答  2012-04-22
if (Edit1.Text) = (Edit2.Text) Then
begin
//代码
end;
end.
楼主望采纳

参考资料:大仙

第2个回答  2012-04-22
if trim(edit1.text)=trim(edit2.text)then
begin
end
第3个回答  2012-04-23
if(edit1.text=edit2.text) then
begin
end
else
......;

delphi7中判定两edit内容是否一致的语句
\/\/ if SameText(Edit1.Text,Edit2.Text) then \/\/不分大小写 \/\/空格在比较内容之内 begin end;

delphi7中 if adoquery.Locate('fbatchno',edit.Text,[loCaseInsensitive...
在数据库中查找fbatchno字段中,与edit.txt中内容相同的记录,找到后并定位到这条记录。 loCaseInsensitive表示大小写不敏感(不区分大小写)。成功,返回True。否则,返回False。

delphi7中怎么用query 进行数据的更新 如当edit1于表中id相同时 按照ed...
query语句如果是Select,可直接使用:query.edit;query.fieldbyname('字段名称1').value:='aaa';query.fieldbyname('字段名称2').value:=123;query.post;

delphi7中如何在另一个界面form2使用前一个登陆界面form1的账号啊,这...
你这是循环引用 应该这样 form1 调用form2 with tform2.create()begin label1.caption=self.edit1.text try showmodual finally free end end

如何使Delphi7的Edit控件中的内容右对齐?
在窗体的OnCreate或OnShow 中加入(适合少数Edit右对齐情况):SetWindowLong(Edit1.Handle,GWL_STYLE,GetWindowLong(Edit1.Handle,GWL_STYLE) or Es_right);

delphi7中IF ELSE语句
我详细讲一下delphi里的 IF 语句吧 首先 Delphi 里 Begin end; 是 c++里的{},就是将 begin~ end; 里的内容视为一个团,满足条件是会执行 begin end 内的内容 若只需执行一行代码 begin end 可以省略。好了接下来 1. IF(条件)then (执行内容);2. IF (条件) then begin (执行...

delphi中edit组件的问题
begin showmessage('帐号有错误,请重新输入');edt1.text:='';edt1.setfocus;end \/\/缺少end 再一个漏洞:使用Tab键就没有检测是否录入的正确 还一个Bug:退格键无法使用

delphi7中,我获取了系统时间yyyymmddhhmmss给edit1,请问我怎么才能在Ed...
\/\/FormatDateTime中mm代表的是月份,取分钟请用nn uses DateUtils;var date :TDateTime;begin date := Now;edit1.Text := FormatDateTime('yyyymmddhhnnss', date);Edit2.Text := FormatDateTime('yyyymmddhhnnss', IncMinute(date, -10));end;...

delphi7中IF语句的使用
OutDate)'+ 'values(:Code,:ReaderID,:OutDate)'); Parameters.ParamByName('Code').Value := Edit1.Text; Parameters.ParamByName('ReaderID').Value := Edit3.Text; Parameters.ParamByName('OutDate').Value := Edit2.

Delphi7中在下面这段代码中,我想要添加实现下面几个功能。请大家帮我...
edit2.color:=cllime;if语句只对其下的一行有作用,之后的代码无论if语句怎样都会执行,应该加上begin...end;if 条件 then begin end;整个代码修改如下:procedure TForm1.Button1Click(Sender: TObject);begin if(edit1.text='6')or (edit1.text='7')then begin \/\/增加内容 edit2.Text:...

相似回答