Click here to Skip to main content
15,894,825 members
Articles / Web Development / ASP.NET

Databound Schedule Controls

Rate me:
Please Sign up or sign in to vote.
4.82/5 (176 votes)
24 Mar 2013LGPL321 min read 2.2M   42.2K   632  
These data controls can show scheduled events automatically
Imports System
Imports System.Web.UI.WebControls

' -------------------------- Databound Schedule Control ------------------------------
'
' ------------------------------ www.rekenwonder.com ---------------------------------

Namespace Objects

    ''' -----------------------------------------------------------------------------
    ''' Project	 : schedule
    ''' Class	 : rw.ScheduleItemEventArgs
    ''' 
    ''' -----------------------------------------------------------------------------
    ''' <summary>
    ''' The ScheduleItemEventArgs class can be used with the OnItemCreated and
    ''' OnItemDataBound events of the Schedule controls
    ''' </summary>
    Public NotInheritable Class ScheduleItemEventArgs
        Inherits EventArgs

        Private _item As ScheduleItem

        Public Sub New(ByVal item As ScheduleItem)
            Me._item = item
        End Sub

        Public ReadOnly Property Item() As ScheduleItem
            Get
                Return _item
            End Get
        End Property
    End Class

    Public Delegate Sub ScheduleItemEventHandler(ByVal sender As Object, ByVal e As ScheduleItemEventArgs)

End Namespace

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 GNU Lesser General Public License (LGPLv3)


Written By
Web Developer
Belgium Belgium
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions