-
My app shows "Replicate" (the Project Name) under Applications in the Task Manager when it is running.
I start multiple instances of the EXE (once for each site that is replicated) and would like the site to be shown in the Task Manager list.
Can I change the "Replicate" to "Replicate - Site 1", "Replicate - Site 2", etc. during run time. This way I could tell which sites are currently running.... Rather than showing 10 instances of "Replicate".
Thanks,
Kevin
VB6 w/SP4
-
Just set the App.Title:
Code:
App.Title = "Replicate - Site 1"
-
This'll work.
Code:
App.Title = "Replicate - Site 1"
App.Title = "Replicate - Site 2"
...
...
...
Beaten...damn, hehe ;].
-
Works like a Charm!!! Thanks for the expedient replies!