+ Reply to Thread
Results 1 to 8 of 8

trying to code is a test to see if a program/application is already running

Hybrid View

  1. #1
    Forum Expert
    Join Date
    02-14-2009
    Location
    .
    MS-Off Ver
    ................
    Posts
    2,840

    Re: trying to code is a test to see if a program/application is already running

    THe best course of action is to use the facilities provided by your application; PCOMMS in this case.

    PCOMMS provides a method to return the number of active terminal windows natively. For example:
    Sub GetTermCount()
    
       Dim autECLConnList as Object
    
       On Error Goto Catch
       Set autECLConnList = CreateObject("PCOMM.autECLConnList")
       autECLConnList.Refresh
       MsgBox "There are " & cStr(autECLConnList.Count) & " terminal sessions running...", vbinformation
    
    Finally:
    
       Set autECLConnList = Nothing
       Exit sub
    
    Catch:
    
       MsgBox "ERROR: " & Err.Description & vbCrLf & "Unable to get count of terminal sessions", vbExclamation, "Error"
       Resume Finally
    
    End Sub
    Written freehand and untested - PCOMMS not available on an Android tablet

  2. #2
    Forum Contributor
    Join Date
    12-16-2016
    Location
    Colorado, US
    MS-Off Ver
    2013
    Posts
    115

    Re: trying to code is a test to see if a program/application is already running

    Cytop thank you for pointing out the PCOMM portion I was missing, Used that with what I had and a few changes and boom we have a working line that tests, and logically moves through as required. Thank you to all you for the collaboration


    Sub Darkside_Launch()
    
        Dim x As Variant
        Dim Path As String
        Dim s As New AutSess
        Dim autEclps As Object, autECLConnList As Object
        
            Set autEclps = CreateObject("Pcomm.auteclps")
            Set autECLOIA = CreateObject("Pcomm.autecloia")
            Set autECLConnList = CreateObject("PCOMM.autECLConnList")
            
        autECLConnList.Refresh
        If CStr(autECLConnList.Count) < 1 Then
        GoTo darksiderun
        Else
        If CStr(autECLConnList.Count) = 1 Then MsgBox ("Darkside is already running")
        GoTo VerifyLogin
        End If
    
    
    darksiderun:
            
        ' Set the Path variable equal to the path of your program's installation
             Path = "Generic.bat"
    
             x = Shell("Generic", 0)
            
             Application.Wait (Now + TimeValue("0:00:10"))
            
                s.SetConnectionByName ("A")
                s.autEclps.StartCommunication
             If s.autEclps.SearchText("Userid . . . .") Then
                Login.Show vbModeless
                
             End If
            Exit Sub
            
             
    VerifyLogin:
    
        Application.Wait (Now + TimeValue("0:00:05"))
            
                s.SetConnectionByName ("A")
                s.autEclps.StartCommunication
             If s.autEclps.SearchText("Userid . . . .") Then
                Login.Show vbModeless
            Else
                Exit Sub
                
             End If
        
        
    End Sub

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. [SOLVED] First Check An Application is running or not using vba then run the code
    By HaroonSid in forum Excel Programming / VBA / Macros
    Replies: 10
    Last Post: 11-30-2016, 07:16 AM
  2. A problem when running program code residing in another workbook
    By eMKaa in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 02-17-2016, 06:41 AM
  3. Code to find if Application is running or available
    By annux08 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 08-06-2015, 12:49 AM
  4. [SOLVED] VBA Code to test if running on Mac or PC
    By jaslake in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-19-2015, 02:16 PM
  5. [SOLVED] program working in the code application, but not the excel sheet
    By emilyloz in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 05-31-2013, 09:20 AM
  6. If statement to test value in cell before running code
    By Motox in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 02-23-2012, 04:49 AM
  7. VBA Delete Code not running in full program
    By WasWodge in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 11-04-2010, 12:04 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1