OSDN Git Service

First Created
authornaru <bottle@mikage.to>
Wed, 1 Jan 2003 21:25:43 +0000 (21:25 +0000)
committernaru <bottle@mikage.to>
Wed, 1 Jan 2003 21:25:43 +0000 (21:25 +0000)
bottleclient/MinMaxEditor.dfm [new file with mode: 0755]
bottleclient/MinMaxEditor.pas [new file with mode: 0755]

diff --git a/bottleclient/MinMaxEditor.dfm b/bottleclient/MinMaxEditor.dfm
new file mode 100755 (executable)
index 0000000..d945ef3
--- /dev/null
@@ -0,0 +1,34 @@
+object frmMinMaxEditor: TfrmMinMaxEditor
+  Left = 683
+  Top = 488
+  Width = 304
+  Height = 125
+  Caption = #26368#23567#20516#12392#26368#22823#20516
+  Color = clBtnFace
+  Font.Charset = SHIFTJIS_CHARSET
+  Font.Color = clWindowText
+  Font.Height = -12
+  Font.Name = #65325#65331' '#65328#12468#12471#12483#12463
+  Font.Style = []
+  OldCreateOrder = False
+  PixelsPerInch = 96
+  TextHeight = 12
+  object btnCancel: TButton
+    Left = 128
+    Top = 64
+    Width = 81
+    Height = 25
+    Cancel = True
+    Caption = #12461#12515#12531#12475#12523'(&C)'
+    TabOrder = 0
+  end
+  object btnOk: TButton
+    Left = 216
+    Top = 64
+    Width = 67
+    Height = 25
+    Caption = '&OK'
+    Default = True
+    TabOrder = 1
+  end
+end
diff --git a/bottleclient/MinMaxEditor.pas b/bottleclient/MinMaxEditor.pas
new file mode 100755 (executable)
index 0000000..3d2653e
--- /dev/null
@@ -0,0 +1,26 @@
+unit MinMaxEditor;
+
+interface
+
+uses
+  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
+  Dialogs, StdCtrls;
+
+type
+  TfrmMinMaxEditor = class(TForm)
+    btnCancel: TButton;
+    btnOk: TButton;
+  private
+    { Private \90é\8c¾ }
+  public
+    { Public \90é\8c¾ }
+  end;
+
+var
+  frmMinMaxEditor: TfrmMinMaxEditor;
+
+implementation
+
+{$R *.dfm}
+
+end.