I have such a code:
Strings strRsponses = forms as slick strResponses! FrmResponses QstnID.OpenArgs If Lane (strResponses) & gt; 0 Then mine! [QstnID] .DefaultValue = Me.OpenArgs End If
when I run it, it returns a 438 error. Does anyone help me to know where the error is?
Definitely it should be:
strResponses = forms! FrmResponses.OpenArgs
or
strResponses = Me.OpenArgs
Only in forms, and recent editions, In the report, there is an OpenArgs property, therefore, I think, the error "the object does not support this property or method".
Comments
Post a Comment