Hello all,
Im using the following code to change the caption of labels
rivate Sub Label5_DblClick(ByVal Cancel As MSForms.ReturnBoolean)
Dim stCaption As String
stCaption = InputBox("Add new caption", , Label5)
If stCaption = vbNullString Then Exit Sub
Label5 = stCaption...