Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

clear parsed section

Status
Not open for further replies.

rudolfelizabeth

Programmer
Jan 14, 2009
89
CW
After you parse a portion of an information of a field delemited by (,) on a form to another field on the form, what is the criteria to clear, the parsed section of the information on from,
 
Private Sub cmdParseClear_Click()
Dim splitString() As String
If Not Trim(txt1 & " ") = "" Then
splitString() = Split(Me.txt1, ",")
txt2 = splitString(1)
txt1 = splitString(0)
End If
End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top