Using SOD Control Resizer with UserControls
Using SOD Control Resizer with MDI child forms
Using SOD Control Resizer lite with SSTab control

Using SOD Control Resizer with UserControls
The owners of Developer license can use SOD Control Resizer in own UserControls. To use SOD Control Resizer with own UserControl you need to implement at least the following interfaces in you UserControl: hWnd, Width, Height, Controls. You can do it as follows:
Public Property Get hWnd() As Long
hWnd = UserControl.hWnd
End Property
Public Property Get Width() As Long
Width = UserControl.Width
End Property
Public Property Get Height() As Long
Height = UserControl.Height
End Property
Public Property Get Controls() As Object
Set Controls = UserControl.Controls
End Property

Using SOD Control Resizer with MDI child forms
If you use the SOD Control Resizer with MDI child form, you should take the following in consideration: When an MDI child form has a sizable border (BorderStyle = 2), Microsoft Windows determines its initial height, width, and position when it is loaded. The initial size and position of a child form with a sizable border depends on the size of the MDI form, not on the size of the child form at design time. In this case SOD Control Resizer doesn't work correctly, because it uses the size of the form at design time. To avoid this you should set the form size in the Load event procedure:
Private Sub Form_Load()
Me.Width = Form Width at design time
Me.Height = Form height at design time
End Sub

Using SOD Control Resizer lite with SSTab control
If you use the SOD Control Resizer with SSTab control, you should take the following in consideration: The SSTab control (and some other controls) sets itself the coordinates of controls belonging to it in order to hide them. It occurs if you click on the tab in the SSTab control. In this case you should inform SOD Control Resizer lite, which adjusts the controls belonging to SSTab, about the fact that the control coordinates have been changed:
Private Sub SSTab1_Click(PreviousTab As Integer)
ResizerLT1.Update
End Sub