M
Maarkr
I have like 30 text boxes, each with a different name, with the following
control source (sounds like bad design, but its more of an app than a db):
=IIf(Not IsNull([estringfret]),[estringfinger],"")
I want a function or a way to address all 30 textboxes like the following:
If Me.TextE2 = "" Then
Me.TextE2.Visible = False
End If
How can I best address all text boxes to set the property to invisible if
the value is ="" ?
it's a program to build guitar chords by listing a chord and filling in the
fret and finger used for each string of the chord. the text boxes sit in
front of a tab diagram and shows the finger that goes on the string/fret, or
is invisible if no fret/finger info is in the db for that chord. thx
control source (sounds like bad design, but its more of an app than a db):
=IIf(Not IsNull([estringfret]),[estringfinger],"")
I want a function or a way to address all 30 textboxes like the following:
If Me.TextE2 = "" Then
Me.TextE2.Visible = False
End If
How can I best address all text boxes to set the property to invisible if
the value is ="" ?
it's a program to build guitar chords by listing a chord and filling in the
fret and finger used for each string of the chord. the text boxes sit in
front of a tab diagram and shows the finger that goes on the string/fret, or
is invisible if no fret/finger info is in the db for that chord. thx