The "SSOneTimeOnly" feature, as implemented, is intended for maximized forms. The drawback is that non-maximized forms do not scale with this feature implemented. The next version of ShrinkerStretcher will contain a constant that will allow better control of this feature. The solution is an easy one. The following section of code in the SS_Rescale subroutine (starting about 90 lines down): *************begin code ******************** If conSSAlwaysIsDefault Then If (InStr(1, frm.Tag, "SSOneTimeOnly", 1) <> 0) Then '* find a string in the form's tag property If sngElapsed < conAutoResizeTimeLimit Then '* rescale the form if resizes are within time limit Else GoTo Exit_SS_Rescale End If Else '* rescale the form every time there is an OnResize event End If Else If (InStr(1, frm.Tag, "SSAlways", 1) <> 0) Then '* find a string in the form's tag property '* rescale the form every time there is an OnResize event Else If sngElapsed < conAutoResizeTimeLimit Then '* rescale the form if resizes are within time limit Else GoTo Exit_SS_Rescale End If End If End If ****************end code ******************** Should be replaced with this: ***************begin code************************** If conSSAlwaysIsDefault Then If (InStr(1, frm.Tag, "SSOneTimeOnly", 1) <> 0) Then '* find a string in the form's tag property If sngElapsed < conAutoResizeTimeLimit Then '* rescale the form if resizes are within time limit Else '* This next if statement added so that non-maximized forms will rescale one time only If JustOpened Then Else GoTo Exit_SS_Rescale End If End If Else '* rescale the form every time there is an OnResize event End If Else If (InStr(1, frm.Tag, "SSAlways", 1) <> 0) Then '* find a string in the form's tag property '* rescale the form every time there is an OnResize event Else If sngElapsed < conAutoResizeTimeLimit Then '* rescale the form if resizes are within time limit Else '* This next if statement added so that non-maximized forms will rescale one time only If JustOpened Then Else GoTo Exit_SS_Rescale End If End If End If End If ************end code***************