Apr 6, 2001 #1 smeyer52 Technical User Mar 11, 2001 9 US Can I create a control array in Access 97? I can't find any information in the Help files, and my efforts have failed in my form. An access amateur, S Meyer
Can I create a control array in Access 97? I can't find any information in the Help files, and my efforts have failed in my form. An access amateur, S Meyer
Apr 6, 2001 2 #2 JerryDennison IS-IT--Management Jan 13, 2001 845 US I guess it depends on what you mean. You can iterate through the controls on your form. ... Dim ctl As Control For Each ctl In Me.Controls If ctl.ControlType = acTextBox Then {do something} End If Next ... Upvote 0 Downvote
I guess it depends on what you mean. You can iterate through the controls on your form. ... Dim ctl As Control For Each ctl In Me.Controls If ctl.ControlType = acTextBox Then {do something} End If Next ...