change karakter for image

  • Thread starter Thread starter ruud.hofman
  • Start date Start date
R

ruud.hofman

I have in a field karakters * or ** if they appear then
there must be shown a hide image.
my code:
If Veld49.Value = "*" Then
Afbeelding27.Visible = True
End If

If Veld49.Value = "" Then
Afbeelding26.Visible = False
Afbeelding27.Visible = False
End If

If Veld49.Value = "**" Then
Afbeelding26.Visible = True
End If


If Veld49.Value = "" Then
Afbeelding26.Visible = False
Afbeelding27.Visible = False
End If

but this code do not work.
Who can help me
 
Try a case statement rather that multiple if statements, it's easier to
debug...

Select Case Veld49
Case "*"
Afbeelding26.Visible = False
Afbeelding27.Visible = True
Case "**"
Afbeelding26.Visible = True
Afbeelding27.Visible = False
Case "", Null 'or Case Else
Afbeelding26.Visible = False
Afbeelding27.Visible = False
End Select

Since Veld49 is a text field, Veld49.Value and Veld49 are equivalent.

Mich
 
Back
Top