函数参考


_SetDate

设置系统的当前日期

#Include <Date.au3>
_SetDate($iDay [, $iMonth = 0 [, $iYear = 0]])

参数

$iDay 月份天数.取值范围: 1-31
$iMonth [可选参数] 月份. 取值范围: 1-12
$iYear [可选参数] 年份. 取值范围: > 0 (windows 可能有某些限制!!)

返回值

成功: 返回 1
失败: 返回 0,设置@error:
@error: 0 - 无错误
1 - 失败@extended:
GetLastError()
错误代码参见:http://msdn.microsoft.com/en-us/library/ms681381.aspx

注意/说明

如果可选参数 (iMonth,iYear) 没有定义, 函数不会改变目前的值!

相关

_SetTime

示例/演示


#include <Date.au3>

_SetDate(20) ; 设置当前日期为 20-xx-xxxx
_SetDate(20, 10) ; 设置当前日期为 20-10-xxxx
_SetDate(20, 10, 2004) ; 设置当前日期为 20-10-2004