Recent File List (MRU)
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
When does an entry get written to the registry for the Recent File List? My application is no longer writting these entries and I can't figure out where it's suppose to occur.
-
When does an entry get written to the registry for the Recent File List? My application is no longer writting these entries and I can't figure out where it's suppose to occur.
Have you looked into CWinApp::SaveStdProfileSettings()?
-
Have you looked into CWinApp::SaveStdProfileSettings()?
I looked there but I didn't bother to put a breakpoint to see if it was getting there. I had overridden the CWinApp->ExitInstance(). I made a call to the SaveStdProfileSettings() there and everything is back to normal. Thanks David, Rome