View Single Post
Join Date: Dec 2002
Posts: 461
Reputation: waynespangler is on a distinguished road 
Solved Threads: 56
waynespangler waynespangler is offline Offline
Posting Pro in Training

Re: Removing First Line Of Text From multiline textbox

 
0
  #6
Aug 26th, 2008
If you want short and simple, try this:
  1. Dim b As String() = Split(TextBox1.Text, vbNewLine)
  2. TextBox1.Text = String.Join(vbNewLine, b, 1, b.Length - 2)
Wayne

It is hard to understand how a cemetery can raise its burial rates and blame it on the cost of living.
Reply With Quote