Guess what? It is a VB program! The program essentially takes a text file, processes the contents, writes a resultant text file and records to 2 database tables, sends mail and then exits. It does no interactive processing at all. I realise where this is going (that we need to be sure what is happening in the program) and I have spoken with the developer and we are going to try to pepper the code with trace statements to see what more information we can discern. In the meantime, can you shed any more light? Thanks, Camille : Does your program writes to a log file or to a database table or to a screen? : If yes, check the output to find out where the program perfoming the : expected functions. : If it is a console application you can redirect screen output to a file using : standard >> command line redirection : If it is a graphical program check it is not linked to static or dynamic : libraries on the network. : Also check it does not use environment variables that are not available to : the user whose acount is used for the service. : If it is a graphical program check it does no rely on such : "graphical" methods as "get/find active window", : "send keystroke", etc... : Please note that a gaphical program is not the one that displays graphical : elements but the one that is designed and compiled as an application : running in Windows GUI sysbsystem, for example all VB applications are : always graphical programs.
|