To clear a label in the form load, you can simply write
Me.lblMyLabel.Caption = ""
but this may cause problems. I don't know if labels can be set to zero length; so you can hide it entirely but not clear it, e.g.
Me.lblMyLabel.Visible = False
Replace "lblMyLabel" with the actual name of your label.
Greg Serrano
Michigan Dept. of Environmental Quality, Air Quality Division
|