Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
5answers
2k views

Unit Testing: DateTime.Now

I have some unit tests that expects the 'current time' to be different than DateTime.Now and I don't want to change the computer's time, obviously. What's the best strategy to achieve this? Thanks
10
votes
5answers
255 views

Is there a Windows absolute time for timestamps? (.NET)

I'm working with a WPF/C# app where I need to lock out users from accessing a particular feature for some amount of time. Basically, from the time a certain event happens, I want to prevent certain ...
9
votes
5answers
535 views

How to prevent usage of expired license through system clock tampering?

I am currently working on a license manager using java, I will be specifying a start and end date for my application so I can force a licensed user to re-license the program after a certain amount of ...
6
votes
6answers
2k views

Override Java System.currentTimeMillis

Is there a way, either in code or with JVM arguments, to override the current time, as presented via System.currentTimeMillis, other than manually changing the system clock on the host machine? A ...
4
votes
1answer
748 views

Modifying the date and time values using SYSTEMTIME, FILETIME, and ULARGE_INTEGER

I am making a program, in C++ using Visual Studio 2005, that needs to create a watermark with the time on a set of images. These images are taken from a video that were processed at certain time ...
4
votes
2answers
512 views

How is the result of the Delphi NOW function affected by the option to “Adjust clock for daylight saving changes”

I realise this question could have been answered by writing some test code. I'm not lazy, I just thought that the answer might be generally useful. I have an app that has generated a large amount of ...
4
votes
1answer
508 views

Changing Android system clock stops timers. How can I restart them?

I need to run a periodic task in an Android application. I currently use a timer like this: final Handler guiHandler = new Handler(); // the task to run final Runnable myRunnable = new Runnable() { ...
4
votes
3answers
1k views

How to get system time in Haskell using Data.Time.Clock?

I'm needing some Ints to use as seed to random number generation and so I wanted to use the old trick of using the system time as seed. So I tried to use the Data.Time package and I managed to do the ...
3
votes
2answers
228 views

Measure user time or system time in Ruby without Benchmark or time

Since I'm doing some time measurements at the moment, I wondered if it is possible to measure the user time or system time without using the Benchmark class or the command line utility time. Using ...
3
votes
3answers
267 views

More accurate equivalent for “time” command in Linux, regarding sys- and usertime?

I am in the following situation: I want to determine the sys- and usertime of little snippets of (PHP- and C++) code. Obviously, I could use the "time" binary in Linux, but given the fact that these ...
3
votes
3answers
577 views

How to populate SYSTEMTIME value?

On Windows Mobile (but I guess it's the same on Windows) in a native C++ app, how would I go about setting a SYSTEMTIME structure correctly? Assuming I have int year, month, dayOfMonth, hour, ...
2
votes
7answers
475 views

most efficient way to get current time/date/day in C

What is the most efficient way of getting current time/date/day/year in C language? As I have to execute this many times, I need a real efficient way. I am on freeBSD. thanks in advance.
2
votes
1answer
90 views

Is there a function like asctime_s() that works for SYSTEMTIME structures in windows?

I know I can do this if I have a struct tm structure, but what if I want to do the same thing with a SYSTEMTIME. I could do this manually but just wondering if there's function that does this ...
1
vote
1answer
55 views

performing Arithmetic on SYSTEMTIME

I have a time value represented in SYSTEMTIME, i want to add/subtract 1 hour from it and get the newly obtained SYSTEMTIME. I want the conversion should take care of the date change on ...
1
vote
3answers
620 views

How can I set the System Time in Java?

Is it possible to change the System Time in Java? It should run under Windows and Linux. I've tried it with the Runtime Class in but there is a problem with the permissions. [EDIT] Hello and ...
1
vote
2answers
311 views

getting difference between two SYSTEMTIME variable

For Example my code is as follows. void main() { SYSTEMTIME LocalTime_Start = { 0 }; GetLocalTime( &LocalTime_Start ); SYSTEMTIME LocalTime_End = { 0 }; // Some ...
1
vote
1answer
425 views

Retrieving boot time using GetTickCount64

I'm trying to extract boot time by getting current time SYSTEMTIME structure, then converting it to FILETIME which I then convert to ULARGE_INTEGER from which I subtract GetTickCount64() and then ...
1
vote
2answers
323 views

setting the system time with C#.NET without using kernel32.dll

Is there a way to set the system time in C#.NET without using kernel32.dll? I'm on a 64 bit system and calling the set time function seems to return "false" for me.
1
vote
3answers
376 views

C# 2.0 specific timezone

HI All, I am working on a legacy application in .NET 2.0 and I want to convert time from local time (which happens to be UTC+1) to the time in Brazil (that is "E. South America Standard Time" as ...
1
vote
3answers
1k views

Given Date, Get Day of Week - SYSTEMTIME

Is it possible to determine the day of the week, using SYSTEMTIME, if a date (month-day-year) is provided or is this structure one-way only? What is the most lightweight way to accomplish what I am ...
1
vote
1answer
823 views

getrusage() get system time, user time. Unix programming help

I am writing a shell where I need to launch several child processes at once and record the system time and user time. So far I am able to do it. The only problem is that I am using wait4 to grab the ...
0
votes
2answers
58 views

difference between two SYSTEMTIME variable

I want to get difference between two SYSTEMTIME variable. I saw someone asked this question here before, but he was told to convert both SYSTEMTIME structures to FILETIME.. Is there another way to ...
0
votes
2answers
41 views

DateTime.UtcNow Not Change, Why?

check the code StringBuilder s = new StringBuilder(); for (var i = 0; i < 100; i++) { TimeSpan t = (DateTime.UtcNow - new DateTime(2010, 1, 1)); ...
0
votes
4answers
123 views

C++ System Time returning the same wrong value

I want to retrieve the last write date on a file. I have written this code for it, but it returns me 52428 in values like "Year" all the time int LastErrorCode; LPCSTR Path = ...
0
votes
0answers
57 views

Calculating the system time difference manually

I have two system times like Sunday 19:00:00 and Monday 19:02:00 How to calculate the difference between these two system times. Thanks in advance.
0
votes
2answers
91 views

Find offset between system-time and Internet time using Python

How would you find the time offset between the local OS system-time and Internet time from various Internet time sources using Python?
0
votes
0answers
57 views

Changing the mail date in chilkat using the chilkat java api

I am using the chilkat api(java) for creating eml files. Can anyone help me out on how to change the mail date. The time that the created eml files currently show is the time of the creation of the ...
0
votes
3answers
190 views

Why does my SystemTimeToFileTime return a result which is off by 5 hours?

It would make sense if I was in a ±5 hour timezone, but I'm in GMT -06:00, so I'm not sure if timezones are my problem or if it's something else. Here is my code I'm using: Private Sub ...
0
votes
2answers
123 views

C++/CLI: SYSTEMTIME Programming Error

I'm trying to make a little alert system to do something (IDK what I want yet) when a certain time arrives. However, I'm getting all these errors when I run that code in a WinForm after some brief ...
0
votes
1answer
539 views

Calander and getTimeInMillis(). Android

I have next code: Calendar cal = Calendar.getInstance(); cal.add(Calendar.YEAR, mYear); /2011 cal.add(Calendar.MONTH, mMonth); /04 cal.add(Calendar.DAY_OF_MONTH, mDay);/13 ...
0
votes
1answer
330 views

getting the local system date time and converting it to a string (MFC C++)

I have inherited some MFC C++ code (it's an ActiveX OCX control running on a Windows Mobile 6.5 device) and I need to acquire the system date and time and append it as part of an existing string ...
0
votes
2answers
912 views

Invalid max count in grep function

If I do a find . -mmin -1 I get 'myfile' which was modified in last one minute. But when I want to search a particular string in that file by doing grep 'myString' myfile -mmin -1 I get the ...
0
votes
2answers
283 views

Change time by clicking on . bat in windows

I am developing a system where several i'm having to change date to Sunday February 06 3:30:50 AM. Is there any way to create a .bat so that by clicking on it, the system automatically changes
0
votes
2answers
533 views

C# SetSystemTime (WIN API) hooking

I need restriction for time changes coming from different sources. The best way, as i think, is to hook WINAPI function SetSystemTime (and maybe SetLocalTime). I tried to hook this by using EasyHook ...
0
votes
1answer
154 views

MS SQL 2005: Any way to temporarily set the system date for a T-SQL script to a different date?

We have a bunch of T-SQL scripts dependent on today's date and when they run. If one doesn't run on the week it should, we end up temporarily setting the system time a day before, run the script, ...
0
votes
2answers
542 views

Get & Set system time in C#

I found one piece of sample code from web forum. When I began to learn it. I found the output is very strange. Why does the code can't work well? It always go forward 8 hours when I run the code ...
0
votes
1answer
143 views

How do I set the windows system clock to the right local time using C++?

Right now I do something like this: SYSTEMTIME st; st.wHour = 6; st.wMinute = 23; BOOL result = SetSystemTime(&st); The goal is to get it to show that exact time on my local ...
0
votes
2answers
2k views

I can't get SetSystemTime to work in Windows Vista using C# with Interop (P/Invoke)

I'm having a hard time getting SetSystemTime working in my C# code. SetSystemtime is a kernel32.dll function. I'm using P/invoke (interop) to call it. SetSystemtime returns false and the error is ...
0
votes
1answer
674 views

SystemTimeToTzSpecificLocalTime - how to get utc offset and time zone

I have a need to convert a utc system time to local time and find the corresponding utc offset. I wouldn't mind getting the time zone also. As far as I can tell, SystemTimeToTzSpecificLocalTime ...
0
votes
2answers
61 views

Is there any other time service than system time that we can make use?

I am developing a desktop app and it have an trial period after which application will get expire. Currently I am using system time. Since user can easily change it, I thought its not a good way to ...
-1
votes
1answer
42 views

C# service registration to systemevent.Timechange()

I wrote a c# service that register to systemevent.Timechange() with function that call OntimeChange() (as mentioned in the MSDN ...