CMemFile?
-
is it possible to create a simple application and delete it while it is running? ie: run c:\mySimpleApp.exe (the app. copies itself-mySimpleApp.exe to memory space with CMemFile ???) delete c:\mySimpleApp.exe but process is still running obviously the challenge is to overcome "the application is currently in use" dialog. any ideas? :-D
-
is it possible to create a simple application and delete it while it is running? ie: run c:\mySimpleApp.exe (the app. copies itself-mySimpleApp.exe to memory space with CMemFile ???) delete c:\mySimpleApp.exe but process is still running obviously the challenge is to overcome "the application is currently in use" dialog. any ideas? :-D
You cannot delete a file while it is being executed (access denied). BTW CMemFile is just like CFile but it writes to and reads from memory instead of hard disk. If you mean the Task manager by "the Application currently in use" then this is impossible, you cannot hide runnig processes from it. Bunburry