ok, cool. I find the documentation on this stuff hard to locate.
thanks.
Main Topics
Browse All Topicswe are creatting a text file with the current time and date from a PC and sending it to the remote device and setting the time. The line of text in the file will be local time on the PC and I need to set the local time on the device from it.
For instance the line of text might be:
200909031114 ' for 9/3/09 at 11:14 AM
I need to set the device time from this.
I have the code below but it sets the GMT time...
thanks.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
SYSTEMTIME st = { 0 };
SetLocalTime(&st);
http://msdn.microsoft.com/
C#:
[DllImport("kernel32.dll")
static extern bool SetLocalTime([In] ref SYSTEMTIME lpLocalTime);
Business Accounts
Answer for Membership
by: alexey_gusevPosted on 2009-09-04 at 10:26:01ID: 25261664
use SetLocalTime() instead of SetSystemTime()