I am trying to loop through all controls in a form: For Each ctrl in Me.Controls in order enable/disable the control based on some conditions. But there is a control on the form that gives an error when I try to access it. What kind of control does that, and how do I find it?
|
|
|
|
|
|
|
Try this:
Dim ctr As Control
Dim CtrStatus Boolean
CtrStatus = False
For Each ctr In Me.Controls
If (SSTab.hwnd = GetParent(ctr.hwnd)) Then
Call CallByName(ctr, "Enabled", VbLet, CtrStatus)
else
ctr.Enabled = CtrStatus
End If
Next
|
||
|
|
|
|
Tosa: from your comment on AngryHacker's answer, I think you are checking the container incorrectly. Your code is like this
For me that gives error 450 The code should use
Explanation. You want to check whether two variables "point" to the same control. Controls are objects: you must use One last word. Next time, could you try to post 10 lines or less of actual code, reproducing the error, and give the exact error number and message and the exact line on which it occurs? It really does make it much easier for us to solve your problem - I know it's work for you to shorten the code, but you'll get better answers that way. |
||
|
|
|
|
Another approach is as follows, that also works at runtime (as opposed to just in the IDE):
|
||||||||
|
|
|
When you get your error and click Debug, is the error on the line setting a control's Enabled property? If so, add a Debug.Print statement writing out the control's name. Do so on the line before setting the Enabled property. Here's what I mean:
The Debug.Print statement will write out to the Immediate Window the name of the control that was last processed in the loop, presumably the one that caused your error. EDIT This might work. Put this control in a Panel control and set the Panel's Enabled property to False. If I recall correctly, in VB6 setting a container control's Enabled property to False will also set the container's child controls Enabled to False. If your control's Enabled property really is read-only, I'm curious what would happen. |
||||
|
