microsoft / winfile

Original Windows File Manager (winfile) with enhancements
MIT License
6.85k stars 709 forks source link

How to save current settings #245

Closed keithg2005 closed 8 months ago

keithg2005 commented 4 years ago

Not an issue, but an tip from an old user that I think needs to be documented.

There is a setting to save current settings on exit, but if you setup the appearance the way you like it you have two options to have it open in the save way.

1) Set save settings on exit to yes, then save and reopen app and turn this setting off. 2) Hold down shift key and right double-click the upper left icon of the file image. This will save the current settings to the default.

craigwi commented 4 years ago

Interesting; the following menu item and code already exist, just disabled:

ifdef PROGMAN

define IDM_SAVENOW 513

endif

ifdef PROGMAN

MENUITEM    SEPARATOR
MENUITEM    "Save Settings &Now",       IDM_SAVENOW

endif

ifdef PROGMAN

case IDM_SAVENOW:

  SaveWindows(hwndFrame);
  break;

endif

malxau-msft commented 8 months ago

I think this can be considered fixed by #423 . Let me know if there are any further issues.