G Guest Feb 17, 2006 #1 how could i obtain a text list of control names on a form? looking to cut/paste into vba to clone a record.. thx! Don
how could i obtain a text list of control names on a form? looking to cut/paste into vba to clone a record.. thx! Don
D Douglas J. Steele Feb 17, 2006 #2 Dim ctlCurr As Control For Each ctlCurr In Me.Controls Debug.Print ctlCurr.Name Next ctlCurr will write the names of all of the controls to the Immediate window.
Dim ctlCurr As Control For Each ctlCurr In Me.Controls Debug.Print ctlCurr.Name Next ctlCurr will write the names of all of the controls to the Immediate window.