home *** CD-ROM | disk | FTP | other *** search
-
- Private Sub UserControl_Resize()
-
- ' Move and resize the consituent controls of the
- ' user control.
- cmdFirst.Move 0, 15
- hsbRecScroll.Move cmdFirst.Width, 0, _
- UserControl.Width - cmdFirst.Width - cmdLast.Width, _
- cmdFirst.Height + 15
- cmdLast.Move cmdFirst.Width + hsbRecScroll.Width, 15
-
- ' Resize the user control.
- UserControl.Height = cmdFirst.Height + 15
- UserControl.Width = cmdFirst.Width _
- + hsbRecScroll.Width + cmdLast.Width
-
- End Sub
-