I have a user form that displays line-by-line validation errors (in text box) that I want to supplement with user form labels that act as hyperlinks that users can click to
Another approach that worked:
Placing Private pLabels As Collection atop the module where PlaceLinkLabel is stored
Private pLabels As Collection
PlaceLinkLabel
and using
If pLabels Is Nothing Then Set pLabels = New Collection pLabels.Add clsLabel
at the end of PlaceLinkLabel module