Hello,
I am getting a compile/runtime error on a field (LogID) that exist on the table, however the field is not displayed on the bound form. My program refers to other fields that are not displayed on the form but exist on table, and these fields do not cause a compile/runtime error.
Would anyone know why this error is occuring?
Thanks so much for your help!
I am getting a compile/runtime error on a field (LogID) that exist on the table, however the field is not displayed on the bound form. My program refers to other fields that are not displayed on the form but exist on table, and these fields do not cause a compile/runtime error.
Would anyone know why this error is occuring?
Thanks so much for your help!
Code:
If Not IsNull(Me.OpenArgs) Then
ViewData = True
If Not IsNull [b](Me.LogID) [/b] Then
strDataPathName = Me.LogID
End If
If Not IsNull(Me.MailingDays) Then
strMailingDays = Me.MailingDays
Call Move_Days
End If
End If