程序只运行一个实例,并且把前一个激活

王朝vb·作者佚名  2006-01-08
窄屏简体版  字體: |||超大  

(仅供参考)

Option Explicit

Private Declare Function ShowWindow Lib "user32" (ByVal hwnd As Long, ByVal nCmdShow As Long) As Long

Private Declare Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Long

Private Declare Function IsIconic Lib "user32" (ByVal hwnd As Long) As Long

Private Declare Function SetForegroundWindow Lib "user32" (ByVal hwnd As Long) As Long

Const SW_RESTORE = 9

Private Const OPEN_APPLICATION = 0

Private Const SINGLE_INSTANCE_OPEN = 1

Sub Main()

Dim MultiInstResult As Integer

MultiInstResult = MultiInst

If MultiInstResult = OPEN_APPLICATION Then

Form1.Show

ElseIf MultiInstResult = SINGLE_INSTANCE_OPEN Then

End

End If

End Sub

Private Function MultiInst() As Integer

Dim hwndFound As Long

Dim strWindowName

strWindowName = App.Title

App.Title = "temp title"

hwndFound = FindWindow(vbNullString, strWindowName)

If hwndFound Then

MultiInst = SINGLE_INSTANCE_OPEN

MsgBox "A instance of the application is already open." & vbCrLf & vbCrLf & "Only one open instance allowed.", vbOKOnly + vbExclamation, "App Name"

If IsIconic(hwndFound) Then

ShowWindow hwndFound, SW_RESTORE

SetForegroundWindow hwndFound

Else

SetForegroundWindow hwndFound

End If

ElseIf hwndFound = 0 Then

App.Title = strWindowName

MultiInst = OPEN_APPLICATION

End If

End Function

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航