okay, I see where your coming from with that. But, by placing info in the Tag property, how do I go about pulling information from other fields.

As of this moment, I have in the Tag property of the Character Name check box

HTML Code:
"[color=blue][size=10]Name: " & charNameTxt.Text & "[/size][/color] " & vbCrLf
When I click the button to perform the action what ends up in the text box is exactly what I place in that Tag property. Quotes and all. I need the charNameTxt.Text to read what I have in that text box and place it there

And the issue with when someone makes a selection of Sex, how do I get it to read if someone selected the Male radio button or the Female radio button.

My Current code based on what you gave me is:

VB Code:
  1. Dim ctl As Control = Me.GetNextControl(Me, True) 'Get the first control in the tab order.
  2.         Do Until ctl Is Nothing
  3.             If TypeOf ctl Is CheckBox AndAlso DirectCast(ctl, CheckBox).Checked Then
  4.                 signatureTxt.Text = CStr(ctl.Tag)
  5.             End If
  6.             ctl = Me.GetNextControl(ctl, True) 'Get the next control in the tab order.
  7.         Loop