我們有兩個應用程序。發送郵件給用戶,不是從應用程序
- MAIN.EXE - 這是主要的應用程序更新
- 的Update.exe - 運行更新MAIN.EXE
我的問題是防止用戶進入主要程序。 exe在更新時。
現在,我正在檢查標誌文件,如果標誌文件存在,application.exe立即。
這很好,除非它不告訴用戶任何東西,只是踢出來。
我要發出一條消息,這是他們回覆消息所需的時間,main.exe正在使用中,無法更新。
任何建議如何我可以專業地顯示消息,更新正在進行中,應用程序關閉?
順便說一句,我想過用:
Private Function IsUpdatingPropane() As Boolean
Try
Dim UpdateInprocess As String = My.Computer.FileSystem.GetParentPath(Application.StartupPath) & "\update.inprocess"
If File.Exists(UpdateInprocess) Then
'Dim Proc As Process
'Dim ProcInfo As New ProcessStartInfo(Configuration.DataFileLocations & Configuration.GasLibrary & "\vbmsg.exe")
'ProcInfo.Arguments = String.Format("vbmsg.txt,{0},{1},NIL,NIL,NIL,OK,9996,9997", Configuration.UserId, Configuration.WorkstationId)
'ProcInfo.WindowStyle = ProcessWindowStyle.Normal
'ProcInfo.WorkingDirectory = Configuration.DataFileLocations & Configuration.GasLibrary
'ProcInfo.UseShellExecute = False
'Proc = Process.Start(ProcInfo)
Application.Exit()
Return True
End If
Return False
Catch ex As Exception
WriteException(ex)
WriteDebugInfo("VerifyNotUpdatingPropane", "An error occurred while checking for update.inprocess file. Please contact SSS for assistance.", True, ex)
Return True
End Try
End Function
但我叫什麼來顯示信息?
在此先感謝!
不是很清楚你究竟是什麼*完全*要求:如何顯示消息,或如何以更好的方式實現exe鎖定? – Tigran 2011-12-14 16:17:07
如何在不鎖定程序的情況下顯示消息,指出無法運行main.exe – ErocM 2011-12-14 16:18:33
需要更多信息,例如您正在使用哪些API/Framework(WPF,WinForms等)?也許是你想要做什麼的代碼示例。從目前的情況來看,當您確定某個標誌文件存在時,您是否可以不顯示某種形式的消息框? – 2011-12-14 16:18:54