Date

DIM Var AS Date

هذا النوع من البيانات يمثل قيم التاريخ والوقت.

يتم تخزين التاريخ داخليا كزوج من الأعداد الصحيحة:

  • The first is the number of days since the جامباس epoch, a arbitrary day about 8000 years B.C.

  • The last is the number of microseconds since midnight.

يتم تخزين التاريخ بالتوقيت العالمي UTC. وعند العرض يتم تحويله مباشرة الى التوقيت المحلي.

Dates can be converted to numbers. Then the number returned is the number of days stored internally and the fraction of day represented by the number of microseconds.

Examples

PRINT Now;; "-";; CFloat(Now)
07/13/2005 02:20:08 - 2485669.138981

إنظر أيضا