I'll answer both in this post.That doesn't look like a shadow to me. It's more like two different font or font sizes super imposed. If it were a shadow effect, there would be a very consistent angle of the shadow, and the picture clearly shows otherwise.
Hi Colin:Do you have a transparent label over a textbox? (or possibly vice versa)
Thanks Trevor:if you switch into design view on your form and use the drop down at the top left of the form icons which will list all your objects and you can select each one which should either highlight if there is an extra object over a label or something else or confirm that all the objects are as expected.
That may help as long as it's not a busy form with lots of objects on it.
Private Sub EncontrarControles()
Dim ctl As Control
Dim t As String
For Each ctl In Me.Controls
If TypeName(ctl) = "Textbox" Then
t = t & "Txt " & ctl.Name & ": " & Left(ctl.Value, 5) _
& " (" & Len(ctl.Value) & ") " & IIf(InStr(ctl.Value, "Elementos") > 0, "***", "") & vbCrLf
ElseIf TypeName(ctl) = "Label" Then
t = t & "Lbl " & ctl.Name & ": " & Left(ctl.caption, 5) _
& " (" & Len(ctl.caption) & ") " & IIf(InStr(ctl.caption, "Elementos") > 0, "***", "") & vbCrLf
End If
Next ctl
MsgBox t
End Sub
Private Sub Form_Load()
EncontrarControles
End Sub