Something has happened to my database application where suddenly, the compilation errors don't make sense. I have tried repairing and even bringing the objects into another fresh database. Here's an example:
Private Sub cmbCumulateOBS_AfterUpdate()
Select Case Me.cmbCumulateCOMMITS
Case "OCT"
Me.txtOCT_O = Me.txtOBS_Start
Me.txtNOV_O = Me.txtOBS_Start * 2
Me.txtDEC_O = Me.txtOBS_Start * 3
Me.txtJAN_O = Me.txtOBS_Start * 4
Me.txtFEB_O = Me.txtOBS_Start * 5
Me.txtMAR_O = Me.txtOBS_Start * 6
Me.txtAPR_O = Me.txtOBS_Start * 7
Me.txtMAY_O = Me.txtOBS_Start * 8
Me.txtJUN_O = Me.txtOBS_Start * 9
Me.txtJUL_O = Me.txtOBS_Start * 10
Me.txtAUG_O = Me.txtOBS_Start * 11
Me.txtSEP_O = Me.txtOBS_Start * 12
Case "NOV"
....
The error I receive is that txtOBS_Start does not exist - but it only does not exist for the txtSEP_O instance. How could that be?
What can I do to get my code working again?