发布网友 发布时间:2022-04-22 23:42
共5个回答
热心网友 时间:2023-10-08 21:38
vc++6.0中可以使用setLocalTime函数来修改系统时间。
使用API函数SetLocalTime进行本地时间设置的方法:
1)SetLocalTime函数的原型:
BOOL SetLocalTime( const SYSTEMTIME *lpSystemTime );
输入参数lpSystemTime是一个SYSTEMTIME类型的参数,如果设置成功,返回true,本地时间将会变成lpSystemTime所指定的时间,否则返回false。
看一下SYSTEMTIME的格式:
typedef struct _SYSTEMTIME {
WORD wYear;
WORD wMonth;
WORD wDayOfWeek;
WORD wDay;
WORD wHour;
WORD wMinute;
WORD wSecond;
WORD wMilliseconds;
} SYSTEMTIME, *PSYSTEMTIME;
2)利用SYSTEMTIME结构体和SetLocalTime函数进行本地时间的设置举例:
SYSTEMTIME st;结构体声明
st.wYear = 2007;赋值年份
st.wMonth = 11;赋值月份
st.wDay = 24;赋值天
st.wHour = 3;赋值小时
st.wMinute = 14;赋值分钟
st.wSecond = 0;赋值秒
st.wMilliseconds = 0;赋值毫秒
SetSystemTime(&st);把结构体变量出入SetSystemTime函数即可。
以上对结构体成员的赋值,除wDayOfWeek成员之外,其它各成员都进行赋值了,甚至连wMilliseconds。使用这种方式进行系统时间设置时,会忽略wDayOfWeek成员,可以不进行该成员的赋值(即使你赋值了也不会被考虑的),但其它所有成员都必须时行赋值,否则无法成功地进行时间设置。
热心网友 时间:2023-10-08 21:38
#include "stdio.h"
#include <process.h>
int main(int argc, char* argv[])
{
system("time 12:23:20");// 修改时间
system("date 2013-12-1");// 修改日期
system("time /t");// 显示时间
printf("OK\n");
return 0;
}
热心网友 时间:2023-10-08 21:39
COleDateTime::SetDateTime
int SetDateTime( int nYear, int nMonth, int
nDay, int nHour, int nMin, int
nSec );
热心网友 时间:2023-10-08 21:40
BOOL SetLocalTime( const SYSTEMTIME *lpSystemTime );
热心网友 时间:2023-10-08 21:40
加载windows.h查下windiws的api.所有关于windows的操作全在里面写着,你自己查吧。搜一下 windows api中文。