Hi, I'm trying to convert a program written in Centura to C#.I?ve run
into a function I could use some help with. I?ve never seen the
SalTblFindNextRow function. Do you know how I could convert this into
c#?
I really appreciate your help, whenever you can find the time :)
Here is the Function:
Function: fnFindHoldOuts
Description: Searches for OUT or ADDOUT books for the SRRO violators.
Returns
Boolean:
Parameters
Static Variables
Local variables
Number: nRow_FHA
Boolean: bDone_FHA
Actions
Set nRow_FHA = TBL_MinRow
Set bDone_FHA = FALSE
While SalTblFindNextRow(tblStudentInfo_205, nRow_FHA,
ROW_New, 0) AND NOT bDone_FHA
Call SalTblSetFocusRow(tblStudentInfo_205, nRow_FHA)
If tblStudentInfo_205.colsStatus = sOutStatus_205
Set bDone_FHA = TRUE
Return bDone_FHA
I?m using DataSets, so any reference to tables that it may be making
would have to be made to work with datasets. Is this do-able? If so,
Please provide a conversion into c# |