|
Function Fetch( ) As AcDataRow
Dim aRow as drowFailByinbox
'set fetch = Super::Fetch( )
Do While True
Set fetch = Super::Fetch( )
If fetch is Nothing Then
lastrecordcheck = True
Exit Function
End IF
If trim(str$(fetch.getvalue("sw_case_swcaseid"))) = "" Then
Exit Function
End IF
if isnull(fetch.getvalue("sw_case_swcaseid"))and
isnull(fetch.getvalue("sw_resolution_swresolutionid"))then
lastrecordcheck = True
End IF
If
fetch.getvalue("sw_defect_swdefectid") <> ppDefectId
then
Exit Function
End If
Loop
' Insert your code here
End Function
|