123456789101112131415161718192021222324252627282930313233343536373839 |
- unit WebNewTenderFrm;
- interface
- uses
- Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
- Dialogs, StdCtrls;
- type
- TWebNewTenderForm = class(TForm)
- btnOK: TButton;
- btnCancel: TButton;
- lbl1: TLabel;
- edtKey: TEdit;
- lbl2: TLabel;
- edtTenderName: TEdit;
- procedure FormCreate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
- implementation
- uses ConstUnit;
- {$R *.dfm}
- procedure TWebNewTenderForm.FormCreate(Sender: TObject);
- begin
- if G_IsTest then
- begin
- edtKey.Text := '31kyI7UwUI'; // ±¾µØ
- edtTenderName.Text := FormatDateTime('yyyymmdd_', Now);
- end;
- end;
- end.
|