hello frnds,i want to check if the computer is in sleep mode or not...Suppose my project is in normal state..I change the state to sleep mode,I want that now when the computer wakes from sleep mode,I want that my project is in minimized state..How to check dat?

I have searched on the google,But didnt find anything...

Recommended Answers

All 2 Replies

Imports Microsoft.Win32

Public Class Form1
    Public Sub New()
        MyBase.New()


        InitializeComponent()
        AddHandler SystemEvents.PowerModeChanged, _
        AddressOf SystemEvents_PowerModeChanged

    End Sub

    Private Sub SystemEvents_PowerModeChanged( _
    ByVal sender As Object, _
    ByVal e As PowerModeChangedEventArgs)
        MsgBox(e.Mode.ToString())
    End Sub

End Class

BUt event SystemEvents_PowerModeChange is not fire when i change the mode..can u help me!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.