コード例 #1
0
ファイル: __Form1.cs プロジェクト: honoka4869/BuildMake-verC-
        private void Start_File()
        {
            System.Reflection.AssemblyTitleAttribute asmttl =
              (System.Reflection.AssemblyTitleAttribute)
              Attribute.GetCustomAttribute(
              System.Reflection.Assembly.GetExecutingAssembly(),
              typeof(System.Reflection.AssemblyTitleAttribute));
            Text = string.Format("Name:{0}/Ver:{1}", asmttl.Title, _md5());
            _live = new __live(this);
            _theme = new __Theme(this);
               ffmpeg_get();
            x264_get();

            CPUThread();
            DriverSet();
            _theme.getFileName();
            buildButton.Text = "Build Start";

               _sqlite = new __SQLite(this);
            _sqlite.Get_Dir_Data();
            _sqlite.Get_Data();
        }
コード例 #2
0
ファイル: __Form1.cs プロジェクト: honoka4869/BuildMake-verC-
 private void 設定初期化DToolStripMenuItem_Click(object sender, EventArgs e)
 {
     _sqlite = new __SQLite(this);
     _sqlite.Delete();
 }
コード例 #3
0
ファイル: __Form1.cs プロジェクト: honoka4869/BuildMake-verC-
 private void buildButton_Click(object sender, EventArgs e)
 {
     BuildBOX.Text = "";
     LogBOX.Text = "";
     _sqlite = new __SQLite(this);
     _sqlite.InsertRecord();
     _sqlite.Dir_InsertRecord();
     _msys = new __msys(this);
 }