I've spent hours and hours on this and would be most grateful if someone could help me get some sleep.
I've got the following two subs:
My problem is in the first sub. Please note the two lines in that first sub:[tt]
x = ctl.Name
DeleteControl(ctl.Name)[/tt]
(I am aware that they are both currently commented-out.)
Me.Controls.Count = 13 when this first sub executes. What I need to have in the first sub is the "DeleteControl(ctl.Name)" line. When I put it in, it does not loop through all 13 controls. In other words, I have a breakpoint on the "Next" in that first sub, and am watching the value of ctl.Name there ...and some of my 13 controls never show up there (i.e. their names don't appear in the value of ctl.Name when that breakpoint is hit.)
When I switch out that line for the "x = ctl.Name" line - a dummy/test line - then I do see my ctl.Name value for the control I'm looking for when the breakpoint is hit.
Something about that call of "DeleteControl(ctl.Name)" makes it not loop through all of the controls... I know my IF conditions look a bit intimidating, but I don't think the problem is there, since when I have that dummy "x = ctl.Name" line - it is executed at exactly the correct times. (If only the real line would act the same!)
Please, please, please help...
Thanks so much,
Dot
I've got the following two subs:
Code:
Private Sub EraseAllAccountRelatedControls()
Dim x As String 'dummy value
Dim ctl As Control
For Each ctl In Controls
If ctl Is Nothing = False Then
If (ctl.Name = "AccountsControl" And TypeOf ctl Is AccountsControl) Or (ctl.Name.ToLower.StartsWith("account_")) Or (TypeOf ctl Is PropertiesControl AndAlso CType(ctl, PropertiesControl).PropertyCollection.ClassName.ToUpper <> "USER INFORMATION") Then
'x = ctl.Name 'this is just a placeholder - this variable is insignificant
'DeleteControl(ctl.Name)
End If
End If
Next
End Sub
Code:
Private Sub DeleteControl(ByVal ControlName As String)
Dim ctl As Control
For Each ctl In Controls
If ctl Is Nothing = False AndAlso ctl.Name = ControlName Then
Me.Controls.Remove(ctl)
End If
Next
End Sub
My problem is in the first sub. Please note the two lines in that first sub:[tt]
x = ctl.Name
DeleteControl(ctl.Name)[/tt]
(I am aware that they are both currently commented-out.)
Me.Controls.Count = 13 when this first sub executes. What I need to have in the first sub is the "DeleteControl(ctl.Name)" line. When I put it in, it does not loop through all 13 controls. In other words, I have a breakpoint on the "Next" in that first sub, and am watching the value of ctl.Name there ...and some of my 13 controls never show up there (i.e. their names don't appear in the value of ctl.Name when that breakpoint is hit.)
When I switch out that line for the "x = ctl.Name" line - a dummy/test line - then I do see my ctl.Name value for the control I'm looking for when the breakpoint is hit.
Something about that call of "DeleteControl(ctl.Name)" makes it not loop through all of the controls... I know my IF conditions look a bit intimidating, but I don't think the problem is there, since when I have that dummy "x = ctl.Name" line - it is executed at exactly the correct times. (If only the real line would act the same!)
Please, please, please help...
Thanks so much,
Dot