Oct 7, 2009 #1 vlingen Programmer Joined Aug 4, 2006 Messages 31 Location US Hi All, I expect this is an easy answer... How do you verify if a form is already open when working on a different form? Thanks!
Hi All, I expect this is an easy answer... How do you verify if a form is already open when working on a different form? Thanks!
Oct 7, 2009 #2 MajP Technical User Joined Aug 27, 2005 Messages 9,382 Location US Public Function isFormLoaded(strFrm As String) As Boolean isFormLoaded = CurrentProject.AllForms(strFrm).IsLoaded End Function Upvote 0 Downvote
Public Function isFormLoaded(strFrm As String) As Boolean isFormLoaded = CurrentProject.AllForms(strFrm).IsLoaded End Function