< Public Sub AddToEndOfTextBox (Text As String, TextControl As TextBox) (?)
Comments'------------------------------------------------------------------------- 'Adds text to the end of a text box '-------------------------------------------------------------------------
Public Sub AddToEndOfTextBox (Text As String, TextControl As TextBox)
GoToEndOfTextBox TextControl
TextControl.SelText = Text
End Sub