システム時間を日付け文字列にデコードします。
#Include <Date.au3>
_Date_Time_SystemTimeToDateStr(ByRef $tSystemTime [, $bFmt = 0])
パラメータ
$tSystemTime | $tagSYSTEMTIME構造体 |
$bFmt | [オプション] 0の場合、mm/dd/yyyy を返します(デフォルト)。 1の場合、yyyy/mm/dd を返します |
返し値
$bFmtに従ってフォーマットされた日付け文字列を返します。
注意
なし。
関連
_Date_Time_SystemTimeToTimeStr, _Date_Time_SystemTimeToDateTimeStr, $tagSYSTEMTIME
例
#include <GuiConstantsEx.au3>
#include <Date.au3>
#include <WindowsConstants.au3>
Global $iMemo
_Main()
Func _Main()
Local $hGUI, $tDate
; GUIを作成
$hGUI = GUICreate("Time", 400, 300)
$iMemo = GUICtrlCreateEdit("", 2, 2, 396, 296, $WS_VSCROLL)
GUICtrlSetFont($iMemo, 9, 400, 0, "Courier New")
GUISetState()
; 現在のシステム日付けを取得
$tDate = _Date_Time_GetSystemTime()
MemoWrite("Current system date .: " & _Date_Time_SystemTimeToDateStr($tDate))
MemoWrite("Current system date .: " & _Date_Time_SystemTimeToDateStr($tDate, 1))
; ユーザーが終了するまでループ
Do
Until GUIGetMsg() = $GUI_EVENT_CLOSE
EndFunc ;==>_Main
; メモコントロールに1行書き込む
Func MemoWrite($sMessage)
GUICtrlSetData($iMemo, $sMessage & @CRLF, 1)
EndFunc ;==>MemoWrite