Function Fetch( ) As AcDataRow 'Set Fetch =
Super::Fetch( )
Dim CurCase As Double
Do While True
Set Fetch = InputAdapter.Fetch()
If Fetch is Nothing Then
Exit Function
End If
If First_Time Then
CurCase =
Fetch.GetValue("CaseID")
PrevCase =
Fetch.GetValue("CaseID")
First_Time = False
Exit Function
End If
CurCase =
Fetch.GetValue("CaseID")
If CurCase <> PrevCase Then
PrevCase = CurCase
Exit Function
End If
Loop
End Function
|
Design.
Weekly service levels.eod
|