Is there a "Default" Option for Labels in userforms?
I have a Frame acting as a print preview, full of Labels that get populated by textboxes. I would like to be able to clear/reset/set Defaults for the Labels if needed, without unloading the whole userform.
Any ideas?
Thanks Michael
Edit:
By the way, at the Moment I can clear them completely by
but the of couse, the Default captions are also gone...![]()
Dim ct As Msforms.Label For Each ct In fmAuftrag.Controls ct.Caption = "" Next ct
Bookmarks