I have a form I run the following code and I get the error message The data has been changed. What am I doing wrong?
Select Case rstLevels.Fields("BomLevels")
Case 1 ' One level Bill - Tube/Slit
strSql = "SELECT" this is a select statement that processes fine
Set rstBom = dbDatabase.OpenRecordset(strSql)
rstBom.MoveFirst
Me.ID_ITEM_SLIT = rstBom.Fields("ID_ITEM_COMPONENT")
Last line is where I am getting my error.
vmon
Select Case rstLevels.Fields("BomLevels")
Case 1 ' One level Bill - Tube/Slit
strSql = "SELECT" this is a select statement that processes fine
Set rstBom = dbDatabase.OpenRecordset(strSql)
rstBom.MoveFirst
Me.ID_ITEM_SLIT = rstBom.Fields("ID_ITEM_COMPONENT")
Last line is where I am getting my error.