R raidxx Jan 12, 2006 #1 Does anybody have some code that will prevent the LCD screen from automatically turning off? No Backlight! thnx.
Does anybody have some code that will prevent the LCD screen from automatically turning off? No Backlight! thnx.
R raidxx Jan 12, 2006 #3 i'm using this code [DllImport("coredll")] extern static void SystemIdleTimerReset(); private void KeepOn() { SystemIdleTimerReset(); } but it does not work.. do u have a any example..
i'm using this code [DllImport("coredll")] extern static void SystemIdleTimerReset(); private void KeepOn() { SystemIdleTimerReset(); } but it does not work.. do u have a any example..
P Paul G. Tobey [eMVP] Jan 12, 2006 #4 You can't call it *just once*! You have to call it often enough so that the time-out period set by the user doesn't expire without at least one such call being made. Paul T.
You can't call it *just once*! You have to call it often enough so that the time-out period set by the user doesn't expire without at least one such call being made. Paul T.
R raidxx Jan 15, 2006 #5 every 1sec. timer calls SystemIdleTimerReset() but does not work.. i think only support PPC,is it? i need code sample for smartphone 2003.
every 1sec. timer calls SystemIdleTimerReset() but does not work.. i think only support PPC,is it? i need code sample for smartphone 2003.
S Sergey Bogdanov Jan 15, 2006 #6 Try to P/Invoke SHIdleTimerReset instead. Also take a look a this post: http://blog.opennetcf.org/pfoot/PermaLink.aspx?guid=d130e903-ffea-44d0-b909-9e8009e75954
Try to P/Invoke SHIdleTimerReset instead. Also take a look a this post: http://blog.opennetcf.org/pfoot/PermaLink.aspx?guid=d130e903-ffea-44d0-b909-9e8009e75954
W WT Jan 15, 2006 #7 it's working [DllImport("Aygshell.dll")] private static extern void SHIdleTimerReset(); public void ResetSHIdleTimer() { SHIdleTimerReset(); } thanks for u'r help Sergey
it's working [DllImport("Aygshell.dll")] private static extern void SHIdleTimerReset(); public void ResetSHIdleTimer() { SHIdleTimerReset(); } thanks for u'r help Sergey