📄 seliobill.pas
字号:
unit selIoBill;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, selBill, StdCtrls, Buttons, Grids, DBGrids, DBGridEh;
type
TdlgSelIOBill = class(TdlgSelBill)
procedure FormShow(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
dlgSelIOBill: TdlgSelIOBill;
implementation
uses dataModule1;
{$R *.dfm}
procedure TdlgSelIOBill.FormShow(Sender: TObject);
begin
inherited;
if dataE2.gTableId =13 then
begin
caption:='选择未付款的销售单';
dbGridEh1.Columns[1].Title.caption:='销售单号';
end
else begin
caption:='选择进货单';
dbGridEh1.Columns[1].Title.caption:='进货单号';
end;
end;
end.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -