Questions tagged [system-clock]

109 questions
-1
votes
1 answer

C++ Get System time as number of seconds in day

I am writing a program to put time-stamps on images taken with a camera. To do that I am using the Windows 7 system time. I have used GetSystemTimeAsFileTime() in the code below: FILETIME ft; GetSystemTimeAsFileTime(&ft); long long ll_now =…
oodan123
  • 319
  • 6
  • 22
-1
votes
1 answer

Setting System Clock in licensing

I have developed a c# application that I wish to sell.You'll must be knowing that many people just reverse their system clock and keep using the software.How to prevent that any ideas?
-2
votes
1 answer

Good Licensing strategy for c# application

I have developed an application using c# and I wish to apply good and strong licensing to it so that it can be protected against cracks and that my clients can renew the license even if they change their system I had few doubts in mind 1.Can…
-3
votes
1 answer

How to delay seconds in android?

I want to delay seconds and show Toast,I try to SystemClock.sleep But it only show last message("10s")... Toast.makeText(MainActivity.this,"1s", Toast.LENGTH_SHORT).show(); SystemClock.sleep(5000); Toast.makeText(MainActivity.this,"5s",…
Ban Lin
  • 95
  • 2
  • 10
1 2 3 4 5 6 7
8