The code below is suppose to work were if a user enters a value in the
text box 12 characters long it will hit this loop and truncate the
value to only 12 characters long....however this doesn;t happen...what
do i need to do?
If txtRightLabel.T ext.Substring(0 , 12) Then
Dim Righttextlable As String
Righttextlable = txtRightLabel.T ext
txtRightLabel.T ext =
Righttextlable. Substring(Right textlable.Lengt h - 12)
End If
text box 12 characters long it will hit this loop and truncate the
value to only 12 characters long....however this doesn;t happen...what
do i need to do?
If txtRightLabel.T ext.Substring(0 , 12) Then
Dim Righttextlable As String
Righttextlable = txtRightLabel.T ext
txtRightLabel.T ext =
Righttextlable. Substring(Right textlable.Lengt h - 12)
End If
Comment