OSDN Git Service

個別あぼーん解除フォーム
[gikonavigoeson/gikonavi.git] / IndividualAbon.pas
diff --git a/IndividualAbon.pas b/IndividualAbon.pas
new file mode 100644 (file)
index 0000000..dac01c6
--- /dev/null
@@ -0,0 +1,34 @@
+unit IndividualAbon;
+
+interface
+
+uses
+  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
+  Dialogs, StdCtrls;
+
+type
+  TIndividualAbonForm = class(TForm)
+    ComboBox1: TComboBox;
+    Label1: TLabel;
+    Button1: TButton;
+    procedure Button1Click(Sender: TObject);
+  private
+    { Private \90é\8c¾ }
+  public
+    { Public \90é\8c¾ }
+    ResNumber : Integer;
+  end;
+
+var
+  IndividualAbonForm: TIndividualAbonForm;
+
+implementation
+
+{$R *.dfm}
+
+procedure TIndividualAbonForm.Button1Click(Sender: TObject);
+begin
+       ResNumber := StrToInt(ComboBox1.Items[ComboBox1.ItemIndex]);
+end;
+
+end.