I'm new to programming. I've made a simple codeblock that runs a Windows program POSTOPEN when I open an application in Lotus Notes 8.5.3 (basic)
' [ML]Check if user is member of the [ConnectClient] role.
ipConnect = HasRole("[ConnectClient]")
If ipConnect = True Then
Dim result As Integer
Print "Postopen: Has [ConnectClient] role - starting Connect Client"
result = Shell("c:\program files (x86)\ipvision\Connect\connect.exe", 1)
End If
Is there any way for Lotus Script to check if a Windows process is already running?
Thanks