Private Sub ShowNewForm()
Dim f As New Form1
f.MdiParent = Me
f.Show()
f.Left = wbContainer.Width - f.Width
f.Top = wbContainer.Height - f.Height
'to keep form in lower right corner when resizing
f.Anchor = AnchorStyles.Bottom + AnchorStyles.Right
End Sub