Hi SF Team,Below is an example of some logic I am using in my app and found it was not cycling through all of the records. Unless I execute the BO.MoveFirst() method before the do loop, it does not cycle through all of the records . Why do I have to execute the .MoveFirst method to use this logic? Would it be better to use .GetEnumerable method of the BO instead?
Thanks Guys,
Jeff
Using lo As New DepartmentsBO
lo.FillDataTable("SELECT * FROM CMPRDepartments")
lo.MoveFirst()
DoDebug.Print(count &
" - Department = " & lo.DepartmentDescription)Loop While lo.MoveNextEnd Using