initial commit

This commit is contained in:
2015-06-17 00:22:42 +09:00
commit bd4d995be4
12 changed files with 642 additions and 0 deletions

74
Form1.Designer.cs generated Normal file
View File

@@ -0,0 +1,74 @@
namespace future_crawler
{
partial class Form1
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.btSearchCode = new System.Windows.Forms.Button();
this.lbFutCode = new System.Windows.Forms.Label();
this.SuspendLayout();
//
// btSearchCode
//
this.btSearchCode.Location = new System.Drawing.Point(12, 12);
this.btSearchCode.Name = "btSearchCode";
this.btSearchCode.Size = new System.Drawing.Size(106, 23);
this.btSearchCode.TabIndex = 0;
this.btSearchCode.Text = "Search Code";
this.btSearchCode.UseVisualStyleBackColor = true;
this.btSearchCode.Click += new System.EventHandler(this.btSearchCode_Click);
//
// lbFutCode
//
this.lbFutCode.AutoSize = true;
this.lbFutCode.Location = new System.Drawing.Point(151, 17);
this.lbFutCode.Name = "lbFutCode";
this.lbFutCode.Size = new System.Drawing.Size(56, 12);
this.lbFutCode.TabIndex = 1;
this.lbFutCode.Text = "unknown";
//
// Form1
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(386, 405);
this.Controls.Add(this.lbFutCode);
this.Controls.Add(this.btSearchCode);
this.Name = "Form1";
this.Text = "Form1";
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.Button btSearchCode;
private System.Windows.Forms.Label lbFutCode;
}
}