狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發文檔 其他文檔  
 
網站管理員

【C#】Winform 實現每天自動定時重新啟動本程序

admin
2024年7月13日 11:55 本文熱度 1289

定時重啟本程序實現方法:

在程序設置中創建三個定時啟動時間設置,并保存到ini文件,不需要啟動的時間段保存為空即可:

 

ini文件內容,用于保存上面三個重啟時間,如果是其他方法保存設置參數,那就用其他方法保存即可:

[AutoStart]

AutoStartTime1=06:00

AutoStartTime2=13:00

AutoStartTime3=22:00

在程序頁面上放置一個定時器TimerRestAPP,Enable為True,Interval為60000毫秒,也即1分鐘輪詢一次:

 

 雙擊定時器,設置代碼:

private static DateTime ThisStartTime = DateTime.Now;      //本次啟動時間
private static string AutoStartTime1 { get; set; }            //自動重啟時間1
private static string AutoStartTime2 { get; set; }            //自動重啟時間2
private static string AutoStartTime3 { get; set; }            //自動重啟時間3

/*
此處自行補充獲取AutoStartTime1、AutoStartTime2、AutoStartTime3三個值的代碼
*/

private void timerResetAPP_Tick(object sender, EventArgs e)

{

    //判斷是否需要自動重啟本程序

    if (AutoStartTime1 != "" || AutoStartTime2 != "" || AutoStartTime3 != "")

    {

        DateTime temp_time;

        string thisDay = DateTime.Now.ToString("yyyy-MM-dd");

        TimeSpan ts_check_auto_start_1;

        TimeSpan ts_check_auto_start_2;

        int auto_start_flag = 0;

        if (AutoStartTime1 != "" && auto_start_flag == 0)

        {

            temp_time = Convert.ToDateTime($"{thisDay} {AutoStartTime1}:00");

            ts_check_auto_start_1 = DateTime.Now - temp_time;

            ts_check_auto_start_2 = temp_time - ThisStartTime;

            if (ts_check_auto_start_1.TotalSeconds > 0 && ts_check_auto_start_2.TotalSeconds > 0) { auto_start_flag = 1; }

        }

        if (AutoStartTime2 != "" && auto_start_flag == 0)

        {

            temp_time = Convert.ToDateTime($"{thisDay} {AutoStartTime2}:00");

            ts_check_auto_start_1 = DateTime.Now - temp_time;

            ts_check_auto_start_2 = temp_time - ThisStartTime;

            if (ts_check_auto_start_1.TotalSeconds > 0 && ts_check_auto_start_2.TotalSeconds > 0) { auto_start_flag = 1; }

        }

        if (AutoStartTime3 != "" && auto_start_flag == 0)

        {

            temp_time = Convert.ToDateTime($"{thisDay} {AutoStartTime3}:00");

            ts_check_auto_start_1 = DateTime.Now - temp_time;

            ts_check_auto_start_2 = temp_time - ThisStartTime;

            if (ts_check_auto_start_1.TotalSeconds > 0 && ts_check_auto_start_2.TotalSeconds > 0) { auto_start_flag = 1; }

        }

        //自動重啟本程序

        if (auto_start_flag == 1) { resetAPP(); }

    }

}


private void resetAPP()

{

    //先隱藏本程序右下角圖標(如果有右下角小圖標,則需要加上這個隱藏小圖標命令,否則不需要下面這行)

    notifyIcon.Visible = false;

    //獲取并啟動當前進程的可執行文件的完整路徑

    StartProcess(Application.ExecutablePath);

    //徹底退出

    Thread.Sleep(100);     //為確保正確執行,延遲100毫秒退出

    Process.GetCurrentProcess().Kill();

    Environment.Exit(0);

}

就可以實現每天自動定時重新啟動本程序了。


該文章在 2024/7/13 12:06:15 編輯過
關鍵字查詢
相關文章
正在查詢...
點晴ERP是一款針對中小制造業的專業生產管理軟件系統,系統成熟度和易用性得到了國內大量中小企業的青睞。
點晴PMS碼頭管理系統主要針對港口碼頭集裝箱與散貨日常運作、調度、堆場、車隊、財務費用、相關報表等業務管理,結合碼頭的業務特點,圍繞調度、堆場作業而開發的。集技術的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業的高效ERP管理信息系統。
點晴WMS倉儲管理系統提供了貨物產品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質期管理,貨位管理,庫位管理,生產管理,WMS管理系統,標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務都免費,不限功能、不限時間、不限用戶的免費OA協同辦公管理系統。
Copyright 2010-2025 ClickSun All Rights Reserved