★★★自動売買ソフトを作ろうぜ★★★ Part2

このエントリーをはてなブックマークに追加
435windbg ◆X1ww7tWpdw
コード貼るよ(崩れたらごめん。既出でもごめん)
マーケットスピードの自動ログイン。C# で。


using System.Runtime.InteropServices;
// 他のは必要なのを適当に書いてくれ

namespace MSboot
{

[StructLayout(LayoutKind.Sequential)]
public struct RECT
{
public int left;
public int top;
public int right;
public int bottom;
}

public class Form1 : System.Windows.Forms.Form
{
private System.ComponentModel.Container components = null;
private System.Windows.Forms.Button button1;
private System.Windows.Forms.Button button2;
private System.Windows.Forms.Button button3;
private System.Windows.Forms.TextBox textBox1; // UserID
private System.Windows.Forms.TextBox textBox2; // Pass

private System.Diagnostics.Process ms;
private System.Windows.Forms.CheckBox checkBox1; // 強制ログアウト・ログイン

private bool bmsflg = false;

}