RTFormwork/项目代码/RTBasicsV1/A00通用窗体/U_InputBoxSingleNumber.pas
“ddf” 61630656e9 1
2024-07-07 09:35:27 +08:00

40 lines
699 B
ObjectPascal

unit U_InputBoxSingleNumber;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls, ExtCtrls, DB, ADODB;
type
TfrmInputBoxSingleNumber = class(TForm)
Panel1: TPanel;
Button1: TButton;
Label1: TLabel;
Price: TEdit;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
FFFIDS: string;
{ Public declarations }
end;
var
frmInputBoxSingleNumber: TfrmInputBoxSingleNumber;
implementation
{$R *.dfm}
procedure TfrmInputBoxSingleNumber.Button1Click(Sender: TObject);
begin
if StrToFloatDef(Price.Text, 0) = 0 then
Price.Text := '0';
ModalResult := 1;
end;
end.