📄 fee_multi_list_f_.pas
字号:
unit Fee_Multi_List_F_;
interface
uses
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
DBCtrls, StdCtrls, ExtCtrls, Grids, DBGrids;
type
TF_Fee_Multi_List = class(TForm)
DBGrid1: TDBGrid;
GroupBox1: TGroupBox;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
Panel_Button: TPanel;
Bt_Print: TButton;
Bt_Return: TButton;
DBLCB_Station: TDBLookupComboBox;
DBLCB_Line: TDBLookupComboBox;
DBLCB_Transfer: TDBLookupComboBox;
procedure Bt_ReturnClick(Sender: TObject);
procedure FormActivate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
F_Fee_Multi_List: TF_Fee_Multi_List;
implementation
uses Table_DM, CommSmdljf;
{$R *.DFM}
procedure TF_Fee_Multi_List.Bt_ReturnClick(Sender: TObject);
begin
Close();
end;
procedure TF_Fee_Multi_List.FormActivate(Sender: TObject);
begin
DBLCB_Station.KeyValue := Default_Station_No;
DBLCB_Line.KeyValue := Default_Line_No;
DBLCB_Transfer.KeyValue := Default_Transfer_no;
DM_Table.V_Multi_Fee.Refresh();
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -