Has anyone had this problem occur?
I wrote several MFC C++ DLL's that invoke modal dialogs to configure my EFS's. I had no problem laoding and unloading my efs that referenced these DLLs.
Once I added a DLL that opens a modeless dialog, when I unload the efs, it crashes esignal. I know it must have something to do with the references hanging around to the modeless dialog box in my DLL which gets unloaded when I unload the efs.
But I haven't figured out how to clean up the references and get the DLL to unload without crashing winsig. Has anyone done this before and can you show me some sample code for a barebones MFC modeless dialog written in C++ and how to safely unload the DLL?
Thanks!
I wrote several MFC C++ DLL's that invoke modal dialogs to configure my EFS's. I had no problem laoding and unloading my efs that referenced these DLLs.
Once I added a DLL that opens a modeless dialog, when I unload the efs, it crashes esignal. I know it must have something to do with the references hanging around to the modeless dialog box in my DLL which gets unloaded when I unload the efs.
But I haven't figured out how to clean up the references and get the DLL to unload without crashing winsig. Has anyone done this before and can you show me some sample code for a barebones MFC modeless dialog written in C++ and how to safely unload the DLL?
Thanks!
Comment