-
Hi, I am creating a com extension for my company which requires that files from a certain directory be ftp'd automatically to a certain destination at a certain time daily. My problem is I can only get my ocx to do so when the program that extends it is running. How do I get my control to constantly check for files and send them even when the program is not running or the ocx is not active.
-
A better solution would be to use the NT schedule service to launch an EXE that would check for the files and send them. Or, you should constantly scan that directory in a separate process and when it finds something launch an EXE to send the files.