• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

Notifying a message in Action center.


Commit MetaInfo

Revisión135f70c39ff973b4b997a88d9364a2ba51946a14 (tree)
Tiempo2015-09-10 13:11:27
AutorJeffyTS <JeffyTS@outl...>
CommiterJeffyTS

Log Message

Some bug fixed.

Cambiar Resumen

Diferencia incremental

--- a/CtrlVIX/CtrlVix.cs
+++ b/CtrlVIX/CtrlVix.cs
@@ -110,11 +110,12 @@ namespace CtrlVix
110110 return false;
111111 }
112112 #if DEBUG
113-// Debug.WriteLine("VIX: Done VIX command.");
113+ Debug.WriteLine("VIX: Done VIX command.");
114114 #endif
115+ System.Threading.Thread.Sleep(1000); // 1sec wait
115116 err = IJob.WaitWithoutResults();
116117 #if DEBUG
117-// Debug.WriteLine("VIX: Finish JobWaitWithoutResults.");
118+ Debug.WriteLine("VIX: Finish JobWaitWithoutResults.");
118119 #endif
119120 if (IVixLib.ErrorIndicatesFailure(err))
120121 {
--- a/VMwPlayerTaskTray/MainForm.cs
+++ b/VMwPlayerTaskTray/MainForm.cs
@@ -100,6 +100,9 @@ namespace VMwPlayerTaskTray
100100 private void timer_MainForm_Tick(object sender, EventArgs e)
101101 {
102102 this.timer_MainForm.Enabled = false; // Timerを無効にする
103+#if DEBUG
104+ Debug.WriteLine("Timer Thread : Start");
105+#endif
103106 ChangeMenuItem(vmxFilePath); // VMwareの動作状態をチェックしMenuItemの表示を切り替える
104107 if (vmState == VMSTATE.ERROR)
105108 {
@@ -107,8 +110,10 @@ namespace VMwPlayerTaskTray
107110 this.notifyIcon_MainForm.Visible = false; // タスクトレイからアイコンを取り除く
108111 Application.Exit(); // アプリケーション終了
109112 }
113+#if DEBUG
114+ Debug.WriteLine("Timer Thread : Finish");
115+#endif
110116 this.timer_MainForm.Enabled = true; // Timerを有効にする
111-
112117 }
113118
114119 private void notifyIcon_MainForm_MouseUp(object sender, MouseEventArgs e)