PMFJI,

Originally Posted by
DefinitelyMaybe
<snip> When I run it stopped at the first label and the error message is Run time 438 - "Object does not support this object or method" <snip>
Labels do not have a VALUE property, thus the error message.
Rearranging the lines a little
Code:
Me.Box140.Visible = True
Me.Label108.Visible = True
Me.Label129.Visible = True
Me.IncludeInReporting_Label = True ' <<-- You cannot set a label to TRUE. What happened to the visible property??
Me.ConstructionStatus_Label = True ' <<-- You cannot set a label to TRUE. What happened to the visible property??
Me.Risk_Level_Label = True ' <<-- You cannot set a label to TRUE. What happened to the visible property??
Me.Risk_Reason_Label = True ' <<-- You cannot set a label to TRUE. What happened to the visible property??
Me.InfraComments_label = True ' <<-- You cannot set a label to TRUE. What happened to the visible property??
Me.IncludeInReporting = True ' <<-- You want to set the control value to TRUE??? What happened to the visible property??
Me.ConstructionStatus = True ' <<-- You want to set the control value to TRUE??? What happened to the visible property??
Me.Risk_Level = True ' <<-- You want to set the control value to TRUE??? What happened to the visible property??
Me.Risk_Reason = True ' <<-- You want to set the control value to TRUE??? What happened to the visible property??
Me.InfraComments = True ' <<-- You want to set the control value to TRUE??? What happened to the visible property??
What am I missing???
HTH
-----
Steve
--------------------------------
"Veni, Vidi, Velcro"
(I came; I saw; I stuck around.)