Jun 15, 2003 #1 H hawk1ns Active member Joined Jun 10, 2003 Messages 37 hello can you tell me how i would do this in vb.net please if mid(body,t,1) = chr$(13) then Regards
Jun 15, 2003 #2 M mutant Well-known member Joined Jan 19, 2003 Messages 1,771 Location Enfield, CT, USA User Rank *Expert* Code: If body.Substring(t, 1) = Convert.ToChar(13) Then