I have a string of say 2000 characters how can I split the screen into 70 characters and insert newline for each 70 lines I have tried for first 70 characters and works fine as follow :
Dim notes As String = ""
If (clmAck.Notes.Count > 70) Then
notes = clmAck.Notes.Insert(70, Environment.NewLine)
Else
I wrote this now for fun: