i want to restrict daily usage of my program.
for example, i want to restrict usage to 100 count daily.
and also want to check whether windows clocks roll back.
so code will be such like.
for i=0 to 100
if i > 100 then
msgbox('daily usage exceed')
else
end if
next
any help much appreciate!