Is there anyway to list all the forms that in the application itself?
I know if you do
It returns a list of all the open forms, but what i need is a list of all available forms in the application, I was just wondering if that was possible at all.
Kind Regards
Devon
I know if you do
Code:
Dim oFrm as Form For Each oFrm in Forms msgbox oFrm.Name Next oFrm
Kind Regards
Devon
Comment