Results 1 to 4 of 4

Thread: Changing App "Name" at runtime

  1. #1

    Thread Starter
    Lively Member
    Join Date
    May 2000
    Location
    Atlanta, GA
    Posts
    80

    Question

    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

  2. #2
    Lively Member
    Join Date
    May 1999
    Location
    KC
    Posts
    72

    Lightbulb

    Just set the App.Title:

    Code:
    App.Title = "Replicate - Site 1"

  3. #3
    Guest
    This'll work.

    Code:
    App.Title = "Replicate - Site 1"
    App.Title = "Replicate - Site 2"
    ...
    ...
    ...
    Beaten...damn, hehe ;].


  4. #4

    Thread Starter
    Lively Member
    Join Date
    May 2000
    Location
    Atlanta, GA
    Posts
    80
    Works like a Charm!!! Thanks for the expedient replies!

Posting Permissions

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



Click Here to Expand Forum to Full Width