函数参考


_Date_Time_DOSTimeToArray

解码一个 DOS 时间到一个数组

#Include <Date.au3>
_Date_Time_DOSTimeToArray($iDosTime)

参数

$iDosTime MS-DOS 日期, 封装为下方格式:
位 0- 4 ,按2分开的秒(Second divided by 2)
位 5-10 ,分钟 (0–59)
位 11-15 ,时钟 (0–23 于 24 小时计时)

返回值

返回一个下面格式的数组:
        [0] - 时
        [1] - 分
        [2] - 秒

注意/说明

None.

相关

_Date_Time_DOSDateToArray, _Date_Time_DOSDateTimeToArray

示例/演示


#include <GUIConstantsEx.au3>
#include <Date.au3>
#include <WindowsConstants.au3>

Global $iMemo

_Main()

Func _Main()
    Local $aDate

    ; 创建 GUI
    GUICreate("Time", 400, 300)
    $iMemo = GUICtrlCreateEdit("", 2, 2, 396, 296, $WS_VSCROLL)
    GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
    GUISetState()

    ; 显示 FAT 时间
    $aDate = _Date_Time_DOSTimeToArray(0x944a) ; 18:34:20
    MemoWrite("FAT time .: " & StringFormat("%02d:%02d:%02d", $aDate[0], $aDate[1], $aDate[2]))

    ; 循环直到用户退出
    Do
    Until GUIGetMsg() = $GUI_EVENT_CLOSE

EndFunc   ;==>_Main

; 写入一行到 memo 控件
Func MemoWrite($sMessage)
    GUICtrlSetData($iMemo, $sMessage & @CRLF, 1)
EndFunc   ;==>MemoWrite