Here is the Question/issue:
I have a form with two Frames (frmMain, fraLead, fraTour). What I am wanting to be able to do here is only affect those controls on one of the frames. I tried teh following:
Private sub LockDownFrame(fra as frame)
Dim ctl as control
For each ctl in fra.container
ctl.enabled = false
next ctl
set ctl = nothing
end sub
Now, this code WILL disable ALL of my controls, Not just the ones on the frame.
Ideas???
/Rob
Start Free Trial