It might also be nice to do it as shown below so that the exact same
generic code could be added to each form.
module code:
Public Const lblCaptionTitle = "Software Version 1"
each userform's code:
Private Sub UserForm_Initialize()
Me.Caption = lblCaptionTitle & ": " & Me.Caption
End Sub