I need to Convert the code from a text field to code for a number field:
If Me.SpecificResultCode = True Then
If stLinkCriteria <> "" Then stLinkCriteria = stLinkCriteria & " and "
stLinkCriteria = stLinkCriteria & "[dbo_customers.QuitCode] = " & ""
& (Trim(Me.SpecificResultCode)) & ""
End If
Thanks
KSIMMSA - 18 Jan 2006 21:47 GMT
I got it:
If Me!ChooseResultCode = True Then
If stLinkCriteria <> "" Then stLinkCriteria = stLinkCriteria & " and "
stLinkCriteria = stLinkCriteria & "[dbo_customers.QuitCode] = " &
((Str(Trim(Me![SpecificResultCode]))))
End If
> I need to Convert the code from a text field to code for a number field:
> If Me.SpecificResultCode = True Then
[quoted text clipped - 3 lines]
> End If
> Thanks