| FUNCTION LIST |
| Function Name |
What It Does |
| Mathematical Functions |
| wizInt() |
Returns the integer portion of a floating point
number. |
| wizRoundTo() |
Rounds a given value to a given precision. |
| wizRoundMultiple() |
Rounds a number up or down to the closest
multiple. |
| Check
Digit Functions |
| wizCalc_CC_CD() |
Calculates mod-10 check digit. |
| wizVerify_CCard() |
Verifies a mod-10 check digit. |
| wizCalc_UPC_CD() |
Calculates a mod-10 check digit, Universal
Product Code formula. |
| wizVerify_UPC() |
Verifies a mod-10 UPC formula. |
| wizVerify_ISBN() |
Verifies a books ISBN. |
| wizGetCCardType() |
Retrieves a credit card type (VISA, MasterCard,
etc) from the cards prefix and checks to see if the length (number of digits) is
valid for that card type. |
| Progress Bar Functions |
| wizInitProgressBar() |
Creates a Progress Bar/Completion Gauge. |
| wizUpdateProgressBar() |
Updates the Progress Bar as a process continues. |
| wizKillProgBar() |
Removes the Progress Bar. |
| Message Box (no buttons) Functions |
| wizInitMsgBoxNoBtn() |
Creates the Message Box. |
| wizUpdateMsgBoxNB() |
Updates the Message Box. |
| wizKillMsgBoxNoBtn() |
Removes the Message Box from the display. |
| Date Functions |
| wizMediumDateStd() |
Formats a date in the Windows Medium
format with a two digit year. |
| wizMediumDateExt() |
Formats a date in the Windows Medium
format with a four digit year. |
| wizIsLeapYear() |
Checks if the supplied four-digit year a Leap
Year or not. |
| wizFirstXDayDate() |
Whats the date of the first Tuesday of
November, 1999? Use this function to find out! |
| wizPriorXDayDate() |
Given a date, finds the XDay (e.g, the Monday)
prior to it; you select what day of week to locate. |
| wizNextXDayDate() |
Given a date, finds the XDay (e.g, the Monday)
following it; you select the day of week to locate. |
| wizNearestXDayDate() |
Given a date, finds the nearest XDay (e.g, the
Monday) prior or following it; you select the day of week to locate. |
| wizWeekNumber() |
Calculates the week number of the year for a
given date, for a given starting Day of Week (different from the
built-inWeekNumber() function.). This function counts weeks from the first complete
week in the calendar year that starts with your day of week. |
| wizWeekNumberDate() |
Calculates the date of the first day of the
given week number, for a given starting Day of Week. Weeks are counted
starting from the first complete week of the calendar year that starts
with your day of week. |
| wizWeekNumberByYear() |
Calculates the week number of the year for a
given date, for a given starting Day of Week. This function finds the first
week in which:
- Your week starts
- Includes January 1st
See the manual for more details. |
| wizWeekNumberDateByYear() |
Calculates the date of the first day of the
given week number, for a given starting Day of Week. Weeks are counted
starting from the first week of the calendar year that starts with your day of
week and includes January 1st.. |
| wizParseDateStd() |
Formats a date string from external sources into
a format that DataEase can recognize as a date, e.g., given 1/1/99, the function returns
01/01/99. |
| wizParseDateExt() |
Formats a date string from external sources into
a format that DataEase can recognize as a date, e.g., given 1/1/1999, the function returns
01/01/1999. |
| wizJulian() |
Creates an extended date Julian
date, e.g. one formatted as YYYYDDD, where YYYY is the year and DDD is the day in the
year. The DDD portion is zero-padded. |