Ehaviv
Computer
- Jul 2, 2003
- 1,012
Hi
When I run a callback dll this hapen.
can someone explain why
This statement throw this exception
unhandled exception encountered in callback automation code
If atts(attrNdx).Title <> myAttrib Or attrqty <> 1 _
Or part.GetStringUserAttribute(myAttrib, attrNdx) <> "1" Then
savedTimes(ndx) = 0
End If
and this not throw that exception
If atts(attrNdx).Title <> myAttrib OrElse attrqty <> 1 _
OrElse part.GetStringUserAttribute(myAttrib, attrNdx) <> "1" Then
savedTimes(ndx) = 0
End If
Or vs OrElse
I am very thank you.