frmCDAddition.Initialize("frmCDAddition",MB_Add.frmMBAddition.Width-25, MB_Add.frmMBAddition.Height-32)
'Load the main layout file
frmCDAddition.RootPane.LoadLayout("dtmm_mbaddcd")
frmCDAddition.SetOwner(MB_Add.frmMBAddition)
frmCDAddition.AlwaysOnTop = True
frmCDAddition.Title = "MusicBase CD Addition"
frmCDAddition.Resizable = False
frmCDAddition.SetWindowSizeLimits(575, 568, 575, 568)
frmCDAddition.Show
With jdk 1.8 the result is as I expect, shown in Capture2 attached.
With jdk 11, the result is as shown in Capture1 - filling the owner beneath. As soon as I move it with the mouse, it shrinks to the proper size, but is not in the middle until I move it there.I haven't found a way to work around this.