Hi,
How do I stop backlight to dimm automatically?
I did manage to prevent stadby with this:
#Region "Prevent Stand-by Mode"
Public Declare Sub SystemIdleTimerReset Lib "coredll.dll" ()
' this works for stand-by, but not for backlight
' you have to manually deactivate backlight OFF from settings in mobile device
Private Sub tmr_standby_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tmr_standby.Tick
SystemIdleTimerReset()
End Sub
#End Region
Thanks.
How do I stop backlight to dimm automatically?
I did manage to prevent stadby with this:
Quote:
#Region "Prevent Stand-by Mode"
Public Declare Sub SystemIdleTimerReset Lib "coredll.dll" ()
' this works for stand-by, but not for backlight
' you have to manually deactivate backlight OFF from settings in mobile device
Private Sub tmr_standby_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tmr_standby.Tick
SystemIdleTimerReset()
End Sub
#End Region