Function TestLabelName(strLabelName As String) As Boolean
On Error Resume Next
Debug.Print Forms("formname").Controls(strLabelName).Caption
'or just use Me(strLabelName) if your referring to the current form
TestLabelName = (Err.number = 0)
End Function