Sub for check Empty Textbox in GroupBox, you can use this:
Public Sub CheckEmptyTextbox(Byval groupbox as GroupBox)
Dim txt as control
For Each txt in groupbox.Controls
IF TypeOF txt is Textbox then
IF txt.Text="" Then
MsgBox("Please Input data to textbox.")
Exit For
End IF
End IF
Loop
End Sub