In what Clarion base CLW / INC does the INI saving get done? maximized window on 2nd monitor

its in ABUTIL.CLW

to fix the problem
find :
INIClass.Update PROCEDURE (STRING ProcedureName, WINDOW W)

comment out the AND not maximized part of if statement
!change this IF NOT Info.Minimized AND NOT Info.Maximized
IF NOT Info.Minimized

this will keep those settings in the INI

if you comment out the minimized part, the window will mess up if it closes minimized.