Пусть form1 - это форма,
gb_check будет групповой рамкой внутри формы
height, location and width
из Groupbox
можно сделать относительно размера формы следующим образом
Private Sub Form1_Resize(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Resize
gb_chek.Height = (Me.Height * 30) / 100 'what ever be the form height the group box's height is always 30% of the form size
gb_chek.Width = (Me.Width * 40) / 100 'what ever be the form width the group box's width is always 40% of the form size
gb_chek.Location = New Point((Me.Width) / 18, (Me.Height) / 12)' set the location of the form relative to form size;
End Sub
Если у вас есть элементы управления внутри группового блока, его размер устанавливается относительно группового блока