📄 pawnmaintain.pas
字号:
unit PawnMaintain;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
ExtCtrls, StdCtrls, DBCtrls, Buttons;
type
TfrmPawnMaintain = class(TForm)
Label2: TLabel;
txtPawnCode: TEdit;
GroupBox1: TGroupBox;
Label3: TLabel;
Label4: TLabel;
Label5: TLabel;
Label6: TLabel;
Label7: TLabel;
Label8: TLabel;
Label9: TLabel;
txtName: TEdit;
txtAddress: TEdit;
txtPhone: TEdit;
txtZip: TEdit;
txtCerCode: TEdit;
txtLinkman: TEdit;
cmbCerName: TDBComboBox;
cmdModify: TButton;
cmdSave: TButton;
GroupBox2: TGroupBox;
GroupBox3: TGroupBox;
Label10: TLabel;
Label11: TLabel;
Label12: TLabel;
Label13: TLabel;
Label14: TLabel;
Label17: TLabel;
Label18: TLabel;
txtLineNo1: TEdit;
txtPawnName1: TEdit;
txtPawnSpec1: TEdit;
txtPawnNum1: TEdit;
sbrPawnInfo: TScrollBar;
txtPawnMoney1: TEdit;
txtDiscountRate1: TEdit;
txtAppraiseValue1: TEdit;
txtLineNo2: TEdit;
txtLineNo3: TEdit;
txtPawnName2: TEdit;
txtPawnName3: TEdit;
txtPawnSpec2: TEdit;
txtPawnSpec3: TEdit;
txtPawnNum2: TEdit;
txtPawnNum3: TEdit;
txtAppraiseValue2: TEdit;
txtAppraiseValue3: TEdit;
txtDiscountRate2: TEdit;
txtDiscountRate3: TEdit;
txtPawnMoney2: TEdit;
txtPawnMoney3: TEdit;
Panel1: TPanel;
Label15: TLabel;
Label16: TLabel;
Label19: TLabel;
Label20: TLabel;
Label21: TLabel;
txtMonthRate: TEdit;
txtFeeRate: TEdit;
txtTotalPawnMoney: TEdit;
txtServiceFee: TEdit;
txtRealPayMoney: TEdit;
Panel2: TPanel;
Label22: TLabel;
Label23: TLabel;
Label24: TLabel;
Label25: TLabel;
Label26: TLabel;
Label27: TLabel;
Label28: TLabel;
Label29: TLabel;
Label30: TLabel;
Label31: TLabel;
txtPawnBeginYear: TEdit;
txtPawnBeginMonth: TEdit;
txtPawnBeginDay: TEdit;
txtPawnEndYear: TEdit;
txtPawnEndMonth: TEdit;
txtPawnEndDay: TEdit;
cmdAdd: TButton;
cmdModifyGoods: TButton;
cmdSaveGoods: TButton;
cmdDelete: TButton;
cmdExit: TBitBtn;
Button1: TButton;
Button2: TButton;
procedure cmdExitClick(Sender: TObject);
procedure cmdAddClick(Sender: TObject);
procedure cmdDeleteClick(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
frmPawnMaintain: TfrmPawnMaintain;
implementation
uses AddNew,LineNo;
{$R *.DFM}
procedure TfrmPawnMaintain.cmdExitClick(Sender: TObject);
begin
close;
end;
procedure TfrmPawnMaintain.cmdAddClick(Sender: TObject);
begin
frmAddNew.showmodal;
end;
procedure TfrmPawnMaintain.cmdDeleteClick(Sender: TObject);
begin
frmLineNo.showmodal;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -