Newbi here,
How do I find a specific form control without using a For Each loop? While the loop works to find a control, it seems to have overhead I'm trying to avoid. I'm using A2K.
Here's the code I'm trying to avoid. There must be another way to find a control.
Thanks in advance,
=Paul
How do I find a specific form control without using a For Each loop? While the loop works to find a control, it seems to have overhead I'm trying to avoid. I'm using A2K.
Here's the code I'm trying to avoid. There must be another way to find a control.
Code:
Dim ctl as Control For each ctl in Me do this and that Next ctl
=Paul
Comment