Have started seeing this Error Message after sending an E-Mail reporting Error status:
Procedure file 'c:\users\marshal\appdata\local\temp\wwcollections.fxp' is not found
wwcollections.prg is included in the compiled App and am using the line RELEASE PROCEDURE wwCollections after the E-Mail has been sent along the other RELEASE statements.

FYI - am using Version 7.23
Don't know but why are you releasing libraries? Just keep them loaded - FoxPro will manage them for you. I suspect the error is actually trying to release the library because it's auto-loaded from the APP/EXE.
+++ Rick ---
Thanks for your prompt reply
FYI wwcollections is not auto-loaded by the Exe.
Have just been following the samples provided by you (years ago?)
Will comment out the RELEASE lines going forward.
Marshal

The only reason you should ever have to release any PRGs is when you need to be able to update the FXP files for recompilation for scripts and templates. Anything else is just best left alone and let FoxPro manage it. And this especially true if the library is compiled into the EXE.
+++ Rick ---