J Jim Pockmire Dec 8, 2006 #1 Can you provide code to print a list of controls in a specified table or form? (Debug.Print)
M Marshall Barton Dec 8, 2006 #2 Jim said: Can you provide code to print a list of controls in a specified table or form? (Debug.Print) Click to expand... Table don't really have controls. For an **open** form or report: For each ctl In Reports("name of form/report").Controls Debug.Print ctl.Name Next ctl
Jim said: Can you provide code to print a list of controls in a specified table or form? (Debug.Print) Click to expand... Table don't really have controls. For an **open** form or report: For each ctl In Reports("name of form/report").Controls Debug.Print ctl.Name Next ctl