am_ajjs_cxs.~pas
资源名称:挡案管理系统.rar [点击查看]
上传用户:szruida
上传日期:2007-06-01
资源大小:6518k
文件大小:5k
源码类别:
Delphi控件源码
开发平台:
Delphi
- unit am_ajjs_cxs;
- interface
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, ExtCtrls, StdCtrls, Buttons, Mask, DBCtrlsEh, DB, DBClient;
- type
- Tam_ajjs_cx = class(TForm)
- Panel1: TPanel;
- Label1: TLabel;
- ComboBox1: TComboBox;
- ComboBox2: TComboBox;
- Label2: TLabel;
- Label3: TLabel;
- DBDateTimeEditEh1: TDBDateTimeEditEh;
- Label4: TLabel;
- ComboBox3: TComboBox;
- Panel2: TPanel;
- Edit1: TEdit;
- BitBtn2: TSpeedButton;
- BitBtn1: TSpeedButton;
- SpeedButton1: TSpeedButton;
- SpeedButton2: TSpeedButton;
- Edit2: TEdit;
- ClientDataSet1: TClientDataSet;
- procedure BitBtn2Click(Sender: TObject);
- procedure ComboBox1Change(Sender: TObject);
- procedure FormCreate(Sender: TObject);
- procedure BitBtn1Click(Sender: TObject);
- procedure ComboBox3Change(Sender: TObject);
- procedure FormClose(Sender: TObject; var Action: TCloseAction);
- procedure SpeedButton1Click(Sender: TObject);
- procedure ComboBox2Change(Sender: TObject);
- procedure SpeedButton2Click(Sender: TObject);
- procedure Edit1KeyPress(Sender: TObject; var Key: Char);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- var
- am_ajjs_cx: Tam_ajjs_cx;
- str,s_zdm,s_logic,s_tj:string;//查找字符串,字段名
- Const ss:array [0..4] of string=('aj_dh','ajlb_mc','ajzt_mc','aj_ndh','aj_wsh');
- implementation
- uses am_dz_ajxzs;
- {$R *.dfm}
- procedure Tam_ajjs_cx.BitBtn2Click(Sender: TObject);
- begin
- close;
- end;
- procedure Tam_ajjs_cx.ComboBox1Change(Sender: TObject);
- begin
- s_zdm:=ss[combobox1.itemindex];//以上是获得下拉框中的值
- combobox2.Clear;
- combobox2.Items.Add('=');
- combobox2.Items.Add('<>');
- combobox2.Items.Add('模糊查询');
- end;
- procedure Tam_ajjs_cx.FormCreate(Sender: TObject);
- begin
- combobox1.Items.Clear;
- combobox1.Items.Add('档号');
- combobox1.Items.Add('案卷类别');
- combobox1.Items.Add('案卷状态');
- combobox1.Items.Add('年代号');
- Combobox1.Items.Add('微缩号');
- end;
- procedure Tam_ajjs_cx.BitBtn1Click(Sender: TObject);
- var S_Edit,Hint:string;
- begin
- S_Edit:=Edit2.Text;
- if trim(Combobox1.Text)='' then
- begin
- application.MessageBox('字段名称不能为空','提示',mb_ok+mb_iconinformation);
- exit;
- end;
- if trim(Combobox2.Text)='' then
- begin
- application.MessageBox('条件不能为空','提示',mb_ok+mb_iconinformation);
- exit;
- end;
- //----------------------------------
- if trim(Edit2.Text)='' then
- begin
- if Combobox2.Text='模糊查询' then
- str:=s_zdm+' '+' like '+' '+''''+trim(edit1.Text)+'%'+''''
- else
- str:=s_zdm+' '+s_tj+' '+''''+trim(edit1.Text)+'''';
- end
- else
- begin
- if Combobox2.Text='模糊查询' then
- str:=s_Edit+s_zdm+' '+' like '+' '+''''+trim(edit1.Text)+'%'+''''
- else
- str:=s_Edit+s_zdm+' '+s_tj+' '+''''+trim(edit1.Text)+'''';
- end;
- //---------------------------------
- Clientdataset1.Close;
- Clientdataset1.CommandText:='select * from V_ajxz where '+str;
- Clientdataset1.Open;
- am_dz_ajxz.ClientDataSet1.Data:=clientdataset1.Data;
- if Clientdataset1.RecordCount=0 then
- application.MessageBox('没有找到符合条件的纪录','提示',mb_ok+mb_iconinformation)
- else
- begin
- Hint:='当前表中有'+IntToStr(Clientdataset1.RecordCount)+'条记录符合条件';
- application.MessageBox(Pchar(hint),'提示',mb_ok+mb_iconinformation);
- end;
- end;
- procedure Tam_ajjs_cx.ComboBox3Change(Sender: TObject);
- begin
- if trim(Combobox1.Text)='' then
- begin
- application.MessageBox('字段名称不能为空','提示',mb_ok+mb_iconinformation);
- exit;
- end;
- if trim(Combobox2.Text)='' then
- begin
- application.MessageBox('条件不能为空','提示',mb_ok+mb_iconinformation);
- exit;
- end;
- s_logic:='';
- case combobox3.ItemIndex of
- 0: s_logic:=' and ';
- 1: s_logic:=' or ';
- end;
- SpeedButton1.Enabled:=true;
- end;
- procedure Tam_ajjs_cx.FormClose(Sender: TObject; var Action: TCloseAction);
- begin
- Action:=cafree;
- am_ajjs_cx:=nil;
- end;
- procedure Tam_ajjs_cx.SpeedButton1Click(Sender: TObject);
- begin
- s_logic:='';
- if trim(Combobox1.Text)='' then
- begin
- application.MessageBox('字段名称不能为空','提示',mb_ok+mb_iconinformation);
- exit;
- end;
- if trim(Combobox2.Text)='' then
- begin
- application.MessageBox('条件不能为空','提示',mb_ok+mb_iconinformation);
- exit;
- end;
- //有效性验证
- case combobox3.ItemIndex of
- 0: s_logic:=' and ';
- 1: s_logic:=' or ';
- end;
- if Combobox2.Text='模糊查询' then
- Edit2.Text:=Edit2.Text+s_zdm+' '+' like '+' '+''''+trim(edit1.Text)+'%'+''''+' '+s_logic+' '
- else
- Edit2.Text:=Edit2.Text+s_zdm+' '+s_tj+' '+''''+trim(edit1.Text)+''''+' '+s_logic+' ';
- combobox1.ItemIndex:=-1;
- combobox2.ItemIndex:=-1;
- edit1.Text:='';
- combobox3.ItemIndex:=-1;
- SpeedButton1.Enabled:=false;
- end;
- procedure Tam_ajjs_cx.ComboBox2Change(Sender: TObject);
- begin
- s_tj:='';
- case combobox2.ItemIndex of
- 0: s_tj:='=';
- 1: s_tj:='<>';
- 2: s_tj:='Like';
- end;
- end;
- procedure Tam_ajjs_cx.SpeedButton2Click(Sender: TObject);
- begin
- combobox1.ItemIndex:=-1;
- combobox2.ItemIndex:=-1;
- edit1.Text:='';
- combobox3.ItemIndex:=-1;
- edit2.text:='';
- end;
- procedure Tam_ajjs_cx.Edit1KeyPress(Sender: TObject; var Key: Char);
- begin
- if Combobox1.Text='年代号' then
- begin
- if not(key in['0'..'9',#8,#13]) then
- key:=#13;
- application.MessageBox('请输入整数','提示',mb_ok+mb_iconinformation);
- end;
- end;
- end.