Click here to Skip to main content
15,891,864 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.4K   6.8K   82  
The Desktop Alarm Clock is a very useful application that can perform several tasks.
Public Class AttainForm

    Dim _filePath As String

#Region " Properties "

    Public Property Verb() As String
        Get
            If Me.VerbsComboBox.SelectedItem IsNot Nothing Then
                Return CStr(Me.VerbsComboBox.SelectedItem)
            Else
                Return String.Empty
            End If
        End Get
        Set(ByVal value As String)
            Me.VerbsComboBox.SelectedItem = value
        End Set
    End Property

    Public Property FilePath() As String
        Get
            Return Me._filePath
        End Get
        Set(ByVal value As String)
            Me._filePath = value
            Dim startInfo As New ProcessStartInfo(value)
            Me.VerbsComboBox.Items.Clear()
            Me.VerbsComboBox.Items.Add(String.Empty)
            For Each verb As String In startInfo.Verbs
                Me.VerbsComboBox.Items.Add(verb)
            Next
        End Set
    End Property

#End Region

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