S
Sondra
Until I can normalize the data in my tables, I need to use
this command on my form:
Private Sub chkobsolete_AfterUpdate()
If Me.chkObsolete Then
For Each ctl in Me.Controls
If Left(ctl.Name, 9) = "togBinder" Then
ctl = 0
End If
Next
End If
End Sub
But I have two miscellaneous togglebuttons on my form that
are needing to be marked as yes when the obsolete button
is checked. I tried to write it how I thought it would be
written, but need some advise. Can you help me with
defining the rest of the code for this:
Private Sub chkobsolete_AfterUpdate()
If Me.chkObsolete Then
For Each ctl in Me.Controls
If Left(ctl.Name, 9) = "togBinder" Then
ctl = 0
If Left(ct1.Name, 10) = "miscBinder" Then
ctl = 1
End If
Next
End If
End Sub
I am currently working on normalizing my data in the new
database that I'm writing for this project. Thanks in
advance.
Sondra
this command on my form:
Private Sub chkobsolete_AfterUpdate()
If Me.chkObsolete Then
For Each ctl in Me.Controls
If Left(ctl.Name, 9) = "togBinder" Then
ctl = 0
End If
Next
End If
End Sub
But I have two miscellaneous togglebuttons on my form that
are needing to be marked as yes when the obsolete button
is checked. I tried to write it how I thought it would be
written, but need some advise. Can you help me with
defining the rest of the code for this:
Private Sub chkobsolete_AfterUpdate()
If Me.chkObsolete Then
For Each ctl in Me.Controls
If Left(ctl.Name, 9) = "togBinder" Then
ctl = 0
If Left(ct1.Name, 10) = "miscBinder" Then
ctl = 1
End If
Next
End If
End Sub
I am currently working on normalizing my data in the new
database that I'm writing for this project. Thanks in
advance.
Sondra