Subj : Re: Process Name in Task Manager To : borland.public.cpp.borlandcpp From : =?iso-8859-1?Q?Jos=E9?= J. Armenta E. Date : Thu Jul 01 2004 12:57 am Hi, If you want to avoid two instances of your program running at the same time, Jogy's indication is the better approach. If for any other reason you want to know if your program is running, you can assign it a unique name, using the lpszClassName member of WNDCLASS; or, if using OWL, via the GetClassName member function of the main window. Later, you'll be able to know if the program is running, using the FindWindow API function (you won't see this name in the task bar). HTH. /JJ. Markus Klein wrote: > > Hi, > > how can i change the Name which was added to the Task Manager when a program > starts? > I try to rename the compiled Exe-File, but it doesn't work. > > I need to start my own Application many times and i must be able to check if > the Programs > are running. > > Thanks -- ** Para responderme, cambie _J_ por _ ** To respond, change _J_ by _ .