The snippet of code below is pretty standard for appending new text into a rtb. How would I go about arranging it so that all new text is prepended to the top of the rtb rather than to the bottom?
Private Sub clientLogMessage(ByVal Message As String)
Delegates.RichTextBoxes.appendText(Me, rtbClient, vbCrLf & Message)
End Sub
Private Sub clientLogMessage(ByVal Message As String)
Delegates.RichTextBoxes.appendText(Me, rtbClient, vbCrLf & Message)
End Sub