Function IsLoaded(szName As String)
Dim frm As Object
For Each frm In UserForms
If frm.Name = szName Then
IsLoaded=True
Exit For
End If
Next frm
End Function

Signature
---
HTH
Bob
(there's no email, no snail mail, but somewhere should be gmail in my addy)
> I'm prety sure this is Access code
>
[quoted text clipped - 5 lines]
>
> Thanks - Kirk
kirkm - 07 Mar 2008 00:32 GMT
Thanks Bob, That did it brilliantly.
Cheers - Kirk