2008-07-06 17:36:37 -04:00
|
|
|
unit fVitalsDate;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
|
2010-07-07 16:31:10 -04:00
|
|
|
StdCtrls, ORDtTm, fBase508Form, VA508AccessibilityManager;
|
2008-07-06 17:36:37 -04:00
|
|
|
|
|
|
|
type
|
2010-07-07 16:31:10 -04:00
|
|
|
TfrmVitalsDate = class(TfrmBase508Form)
|
2008-07-06 17:36:37 -04:00
|
|
|
dteVitals: TORDateBox;
|
|
|
|
Label1: TLabel;
|
|
|
|
btnOK: TButton;
|
|
|
|
btnCancel: TButton;
|
|
|
|
btnNow: TButton;
|
|
|
|
procedure btnNowClick(Sender: TObject);
|
|
|
|
procedure FormCreate(Sender: TObject);
|
|
|
|
private
|
|
|
|
{ Private declarations }
|
|
|
|
public
|
|
|
|
{ Public declarations }
|
|
|
|
end;
|
|
|
|
|
|
|
|
var
|
|
|
|
frmVitalsDate: TfrmVitalsDate;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
{$R *.DFM}
|
|
|
|
|
|
|
|
uses
|
|
|
|
ORFn;
|
|
|
|
|
|
|
|
procedure TfrmVitalsDate.btnNowClick(Sender: TObject);
|
|
|
|
begin
|
|
|
|
dteVitals.Text := 'NOW';
|
|
|
|
end;
|
|
|
|
|
|
|
|
procedure TfrmVitalsDate.FormCreate(Sender: TObject);
|
|
|
|
begin
|
|
|
|
ResizeAnchoredFormToFont(Self);
|
|
|
|
end;
|
|
|
|
|
|
|
|
end.
|