I am getting the "Argument not optional" error when this code is run from my form. Code is run on the After update event of a Drop Down select control. Note the first line of the code runs fine and both controles I am tryig to update are on the same form from the same table. No retrictons on the form or controls.
The second line Me.Section = Me.Text32 is the failing line with the "Argumen not optional" Error. When commented out the first line runs fine and updates the Chapter control. The Text32 control is temporary. It was Me.EnterATA.Column(4) when the first failures occured.
And, what does "Argument not Optional" actually mean?
.
Code:
Private Sub EnterATA_AfterUpdate()
Me.Chapter = Me.EnterATA.Column(3)
Me.Section = Me.Text32
End Sub
The second line Me.Section = Me.Text32 is the failing line with the "Argumen not optional" Error. When commented out the first line runs fine and updates the Chapter control. The Text32 control is temporary. It was Me.EnterATA.Column(4) when the first failures occured.
And, what does "Argument not Optional" actually mean?
.