| |
| Finds the next financial year for the given year. |
| |
 |
SHORT FindNextYear ( SHORT sYear ) |
|
| |
| Parameters | | sYear | | [in] The year you want to find the next financial year of. | | | | Return value |
| A SHORT containing the next financial year if one exists for the given year, otherwise 0. |
| |
| See Also |
|
|
|
| |
| Samples |
| |
 |
C++ |
| |
// Find the first financial year after year 2025
short sYear = pDossier->FindNextYear (2025);
|
|
 |
C# |
| |
// Find the first financial year after year 2025
short sYear = oDossier.FindNextYear (2025);
|
|
 |
VBS |
| |
' Find the first financial year after year 2025
Dim sYear
sYear = oDossier.FindNextYear(2025)
|
|
 |
VB.NET |
| |
' Find the first financial year after year 2025
Dim sYear As Short
sYear = oDossier.FindNextYear(2025)
|
|