This is a discussion on Killing an exe from the taskmanager within the Visual Basic Tutorials forums, part of the Articles and Tutorials category; we have a vb application exe, which is running on a server, sends mails to the users using CDONTS object. ...
|
|||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Killing an exe from the taskmanager
we have a vb application exe, which is running on a server, sends mails to the users using CDONTS object. the application is having so many dlls/ocx files.
the application is being scheduled to run everyday. the problem is, after finishing its job, the application exe is not terminating from the taskmanager. ... meaning i am seeing the application exe in the processes tab of the taskmanager(it is keep on running....) we tried so many possiblities ... but nothing helped ... can anyone please tell me how to kill that application exe after finishing its job .... appreciate your response .... |
|
|||
|
do you have any sql server database you can use......
it's something to do with the vb code it self. depending on the termination point.. I use vb program to send emails and do some other processing , scheduled to run... they are working fine.... I am using cdonts stored procedure to send email form sql server using vb after it completes the process and the exe is scheduled to run from sql server it self... Last edited by sanereddy; 07-12-2005 at 04:27 PM. |
|
|||
|
thanks for the reply ....
since my application is having so many dlls/ocx's, i donno which dll/ocx is not terminating, so because of that i am seeing that exe still running in the taskmanager..... actually the application gets data from mainframe db2 database and sends mail .... |