Please enable JavaScript to view this site.

 

Navigation: Macros > Macro Language > Built-in Functions > All Functions

Reset_FindNextHolidayOnDate

Scroll Prev Up Next More

void = Reset_FindNextHolidayOnDate()

 

This macro function moves the holidays table cursor back to the beginning of the table, and prepares its index for subsequent calls to the function FindNextHolidayOnDate.

 

Below is an example of the use of the function FindNextHolidayOnDate to iterate over all the holidays of nHolSetID on nDate.

// get all the holidays of nHolSetID on nDate
sRESULT = ''
// move the table's cursor back to the beginning
Reset_FindNextHolidayOnDate()
// look for all holidays on same date
while FindNextHolidayOnDate(nDate,nHolSetID)
   sRESULT = sRESULT + chr(13) + GetHolNameFromTable()
endwhile

See also: FindNextHolidayOnDate and Reset_GetNextDateForHolidayId.

 


Topic 110052, last updated on 18-Apr-2020