Files
lazarus-ccr/applications/lazstats/source_orig/rangeselectunit.pas
wp_xxyyzz 819af1d403 LazStats: Adding original source, part 7.
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7886 8e941d3f-bd1b-0410-a28a-d453659cc2b4
2020-11-16 11:21:34 +00:00

49 lines
767 B
ObjectPascal

unit RangeSelectUnit;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, FileUtil, LResources, Forms, Controls, Graphics, Dialogs,
StdCtrls;
type
{ TRangeSelectFrm }
TRangeSelectFrm = class(TForm)
CancelBtn: TButton;
Label4: TLabel;
OKBtn: TButton;
FirstCaseEdit: TEdit;
LastCaseEdit: TEdit;
Label1: TLabel;
Label2: TLabel;
Label3: TLabel;
procedure FormShow(Sender: TObject);
private
{ private declarations }
public
{ public declarations }
end;
var
RangeSelectFrm: TRangeSelectFrm;
implementation
{ TRangeSelectFrm }
procedure TRangeSelectFrm.FormShow(Sender: TObject);
begin
FirstCaseEdit.Text := '';
LastCaseEdit.Text := '';
end;
initialization
{$I rangeselectunit.lrs}
end.