Ha Ha LoL
No
But sometime things are just "bust". So it sometimes helps to simply press
the delete button. Of course there is normally a good reason why thing don't
work - but (this is my expereince) something just are not wrth the time
worrying about. If you can get them to work - fine, if not then it may be
worth looking at in more details.
Glad it worked for you

Signature
Wayne
Manchester, England.
> Wayne-I-M....I tried it...and instead of naming the copied label
> "lbl267", I kept "Label267", and...
[quoted text clipped - 29 lines]
> > >
> > > TIA - Bob
Bob Barnes - 20 Jun 2007 02:23 GMT
Thanks again...This is going into "My Tool Bag"...
IF it doesn't work someday, we'll try for another solution.
Bob
> Ha Ha LoL
>
[quoted text clipped - 41 lines]
> > > >
> > > > TIA - Bob
Wayne-I-M - 20 Jun 2007 08:48 GMT
Hi Bob
I created a butoon called LableGoAway and used both of your lable names to
see if there was anything there that would have caused the problem you
descibed and it didn't so I don't think it was the name that was causeing the
problem. Without looking at the other - interrelated - codes and controls,
on your form there is not a lot I can say other than if it works now thats
good but if it doesn't work in the future you could repost with more details.
Create a button LableGoAway and lables Label186 and lbl186 and use this
OnClick of the button to test the names.
Private Sub LableGoAway_Click()
If Me.lbl186.Visible = True Then
Me.lbl186.Visible = False
Else
Me.lbl186.Visible = True
End If
If Me.Label186.Visible = True Then
Me.Label186.Visible = False
Else
Me.Label186.Visible = True
End If
End Sub
As you can see - clicking again and again on the button hides and unides the
lables so not much there to cause the problem

Signature
Wayne
Manchester, England.
> Thanks again...This is going into "My Tool Bag"...
> IF it doesn't work someday, we'll try for another solution.
[quoted text clipped - 46 lines]
> > > > >
> > > > > TIA - Bob