Andrew J Canfield says:
Quote:
> I am trying to run an application on the terminals of some of my users
>to notify them of new data in a database. The app is an EXE of a VB6 app and
>all it is a message box that tells them of the new data. I need to call the
>app from an app that runs on the server to import the data. I need to notify
>the users as soon as possible of new data. if there is a better way to do
>this. Please feel free to let me know of it.
Sub StartProcess (CommandLine, CurrentDirectory, computername)
Dim Proc, ProcessId
Set Proc = GetObject("WinMgmts://" & computername & _
"/root/cimv2").Get("Win32_Process")
Proc.Create CommandLine, CurrentDirectory, ProcessId
Set Proc = Nothing
End Sub
----------
Randy Hunt
MCP+I / MCSE