Click here to Skip to main content
15,887,746 members
Articles / Desktop Programming / Win32

Desktop Alarm Clock

Rate me:
Please Sign up or sign in to vote.
4.73/5 (21 votes)
23 Jan 2010CPOL3 min read 128.2K   6.8K   82  
The Desktop Alarm Clock is a very useful application that can perform several tasks.
Public Class HKLabel
    Inherits System.Windows.Forms.Label

    'Public Event HotkeyChanged As EventHandler
    Private _hk As Hotkey

    <System.ComponentModel.Browsable(False)> _
    Public Property Hotkey() As Hotkey
        Get
            Return Me._hk
        End Get
        Set(ByVal value As Hotkey)
            Me._hk = value
            MyBase.Text = Me._hk.ToString
            If Me._hk.Data = Keys.None Then
                Me.ForeColor = Color.Red
            Else
                Me.ForeColor = Color.Black
            End If
        End Set
    End Property

End Class

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior) ZipEdTech
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions