There is a bug in the EasySplitter class in pResizePanels(): Height should be ScaleHeight:
f = f + m_oContainer.ScaleX(m_lSplitSize, vbPixels, _
m_oContainer.ScaleMode)
--- m_oRightBottom.Move f, 0, m_oContainer.ScaleWidth - f, _
m_oContainer.Height
+++ m_oRightBottom.Move f, 0, m_oContainer.ScaleWidth - f, _
m_oContainer.ScaleHeight
End If
|