Synchronize time
-
My program needs to be synchronised with my data server. I must do it into my program, in VC++ 6 (not in .NET). I can not find any function in msdn which do it. :(( I've another solution,;) instead of synchronising, I need to get the system time of the server. But I can not found any function to do this.:sigh: Does someone has already realize it ? Firejano
-
My program needs to be synchronised with my data server. I must do it into my program, in VC++ 6 (not in .NET). I can not find any function in msdn which do it. :(( I've another solution,;) instead of synchronising, I need to get the system time of the server. But I can not found any function to do this.:sigh: Does someone has already realize it ? Firejano
First off, what kind of data are you synchronising? Instead of depending on the time of the server, can you not depend on the time of the content/file that you are trying to synchronise ?
-Prakash
-
First off, what kind of data are you synchronising? Instead of depending on the time of the server, can you not depend on the time of the content/file that you are trying to synchronise ?
-Prakash
I try to synchronise my computer system time, with server one. Firejano
-
My program needs to be synchronised with my data server. I must do it into my program, in VC++ 6 (not in .NET). I can not find any function in msdn which do it. :(( I've another solution,;) instead of synchronising, I need to get the system time of the server. But I can not found any function to do this.:sigh: Does someone has already realize it ? Firejano
-
Maybe this article can help you? http://www.codeproject.com/datetime/w32timeservice.asp[^]
thanks, with the msdos command "net time /SET /YES \\my_server" you can synvhronise computer system time with the server one Tchao Firejano