Slightly unusual question.

Imagine I have a form with a few controls on it. And the controls properties are set up at runtime.

Is there any way possible to save the property changes that were made at runtime to the controls themselves? I mean - short of manually editing all the controls at Design time?


This might be easier to explain by example. See dummy code below. Using this example - I want to find something that will save the Caption of CommandButton1 as "TestMe" (rather than have it only temporarily set at runtime)
Private Sub UserForm_Initialize()
    Me.CommandButton1.Caption = "TestMe"
End Sub