Return to an already open application when a user tries to open a new instance in vb6

后端 未结 2 1866
南笙
南笙 2021-01-15 04:35

Suppose a user minimize my visual basic application to the taskbar notification icon. Now I want when user open a new instance, the old one should restore.

相关标签:
2条回答
  • 2021-01-15 04:51

    You can often do this fairly simply using DDE in a degenerate way:

    Form1.frm

    Option Explicit
    'This is Form1.  To use as DDE source at design time we set:
    '   Form1.LinkMode = 1 (Source, i.e. vbLinkSource).
    '   Form1.LinkTopic = "Form1" (default).
    '
    'Note we use (hidden) Label1 on this Form as a DDE destination.
    
    Private PrevState As Integer
    
    Private Sub Form_LinkExecute(CmdStr As String, Cancel As Integer)
        'Got a "command" so restore Form1 and accept the command.
        WindowState = PrevState
        Caption = "I am awake!"
        Cancel = False
    End Sub
    
    Private Sub Form_Load()
        PrevState = WindowState
    End Sub
    
    Private Sub Form_Resize()
        If WindowState <> vbMinimized Then PrevState = WindowState
    End Sub
    

    Module1.bas

    Option Explicit
    
    Private Sub Main()
        Load Form1
        'After Form1 is loaded (hidden), try DDE link to possible prior copy.
        With Form1.Label1
            .LinkTopic = App.EXEName & "|Form1"
            On Error Resume Next
            .LinkMode = vbLinkManual
            If Err.Number = 0 Then
                On Error GoTo 0
                'Link succeeded.  Wake up prior copy via pushback to
                'the DDE source, then unload Form1 and terminate.
                .LinkExecute "Wake up!"
                Unload Form1
            Else
                On Error GoTo 0
                'Link failed, so we're 1st.  Show Form1.
                Form1.Show vbModal
            End If
        End With
    End Sub
    
    0 讨论(0)
  • 2021-01-15 04:57

    Generally, the strategy used to create a single-instance application is to add some code to the application initialization that determines whether an instance is already running. If one is, it gets a handle to its main window, passes the focus to it, and silently dies. If one is not, it continues to run and completes the rest of the initialization sequence as usual.

    You'll find lots of old VB 6 articles that accomplished this by iterating through all of the top-level windows, looking for one whose caption matches the one you expect. But this is a pretty fragile solution, it doesn't take very much to throw it off.

    Same deal with the App.PrevInstance property. This is very simple to use, but also very simple in its implementation. It works based on the name of the executable and looks for a running process whose name is a match. However, this is easily defeated if a user creates and renames a copy of the executable. If this is acceptable for you, you could implement this very easily by querying the App.PrevInstance property. Otherwise, you'll need to use a more robust solution.

    One such possibility is to create and register a named mutex when the first instance of your application is starting up. Then, when subsequent instances try to register that same mutex, they will fail, indicating that an instance is already running. You can find instructions on using mutexes in VB 6 in the answers to this question.

    A couple of important caveats to using mutexes:

    • You need to make sure that you call the ReleaseMutex and CloseHandle functions when your application is closed in order to release ownership of and destroy the mutex that you created.

    • When you are running your program in the VB 6 IDE (e.g., to debug it) and it registers a mutex, the mutex belongs to the IDE and won't be released until you close the IDE and restart it. To prevent this, you can suppress the creation of the mutex when running inside of the IDE/debugger using conditional compilation. If you take this approach, make sure to test your program outside of the debugger to be sure that the mutex-related functionality is working as expected! You should never ship something to customers that you haven't thoroughly tested.

    You can find all of the VB 6 declarations for these Windows API functions by using the API Viewer program that comes bundled with your VB 6 installation.

    More information about handling multiple instances of a VB 6 application is available here on Karl Peterson's site. There's also a complete example implementation in this article on VB Accelerator—focus specifically at step 2, you don't need the rest of the code.

    0 讨论(0)
提交回复
热议问题