예제 #1
0
파일: Form1.cs 프로젝트: KBrizzle/DankWire
        private void bt_update_Click(object sender, EventArgs e)
        {
            //Get Commands
            List<string> Commands = GetCommands();

            //Interpret
            Update update = new Update(pb, Commands);
            update.RunScript();
            update.RunDankWire();
            this.Close();
        }
예제 #2
0
파일: Form1.cs 프로젝트: KBrizzle/DankWire
        private void update_DoWork(object sender, DoWorkEventArgs e)
        {
            //Get Commands
            List<string> Commands = GetCommands();

            //Interpret
            Update update = new Update(this, Commands);
            update.RunScript();
            update.RunDankWire();
            Updated = true;
        }