A A. Atzert Dec 30, 2003 #1 Is there a function that will list the open forms in an MS Access program?
D Dirk Goldgar Dec 30, 2003 #2 A. Atzert said: Is there a function that will list the open forms in an MS Access program? Click to expand... Not built-in, but this code will do it: Dim drm As Form For Each frm in Forms Debug.Print frm.Name Next frm That'll print the list in the Immediate window. You could modify it to build a delimited list in a string variable, if you wanted.
A. Atzert said: Is there a function that will list the open forms in an MS Access program? Click to expand... Not built-in, but this code will do it: Dim drm As Form For Each frm in Forms Debug.Print frm.Name Next frm That'll print the list in the Immediate window. You could modify it to build a delimited list in a string variable, if you wanted.