コード例 #1
0
 void server_OnListen()
 {
     if (this.InvokeRequired)
     {
         dserver_OnListen d = new dserver_OnListen(server_OnListen);
         this.Invoke(d);
     }
     else
     {
         String command = "\n> Debugger ready.\n";
         command += "\n> Waiting for the emulator.\n";
         commandtb.AppendText(command);
         commandtb.ScrollToCaret();
     }
 }
コード例 #2
0
ファイル: DebugManager.cs プロジェクト: nadar71/Krea
 void server_OnListen()
 {
     if (this.InvokeRequired)
     {
         dserver_OnListen d = new dserver_OnListen(server_OnListen);
         this.Invoke(d);
     }
     else
     {
         String command = "\n> Debugger ready.\n";
                command += "\n> Waiting for the emulator.\n";
         commandtb.AppendText(command);
         commandtb.ScrollToCaret();
     }
 }
コード例 #3
0
ファイル: AppRemoteController.cs プロジェクト: nadar71/Krea
        void server_OnListen()
        {
            if (this.InvokeRequired)
            {
                dserver_OnListen d = new dserver_OnListen(server_OnListen);
                this.Invoke(d);
            }
            else
            {
                String command = "\n> Debugger ready.\n";
                command += "\n> Waiting for the emulator.\n";

            }
        }