I read that someone uses a string builder class in vba. For some reason, that thought had never occurred to me, but I thought I’d give it a try. Here’s my first attempt.
Private msText As String Public Property Get Text() As String Text = msText End Property Public Sub Append(sText As String, Optional sDelim As [...] Read More...