Click here to Skip to main content
15,879,326 members
Articles / Desktop Programming / Windows Forms

i00 Spell Check and Control Extensions - No Third Party Components Required!

Rate me:
Please Sign up or sign in to vote.
4.95/5 (117 votes)
11 Jan 2014Ms-PL16 min read 1.3M   21   266  
Simple to use, open source Spell Checker for .NET
'i00 BindingList with DataGridView
'©i00 Productions All rights reserved
'Created by Kris Bennett
'----------------------------------------------------------------------------------------------------
'All property in this file is and remains the property of i00 Productions, regardless of its usage,
'unless stated otherwise in writing from i00 Productions.
'
'i00 is not and shall not be held accountable for any damages directly or indirectly caused by the
'use or miss-use of this product.  This product is only a component and thus is intended to be used 
'as part of other software, it is not a complete software package, thus i00 Productions is not 
'responsible for any legal ramifications that software using this product breaches.

<System.ComponentModel.DesignerCategory("")> _
Public Class AdvancedBindingSource
    Inherits BindingSource
    Implements iFilterChanged

    Public Interface iFilterChanged
        Event FilterChanged(ByVal sender As Object, ByVal e As EventArgs)
    End Interface

    Public BasicFilters As New List(Of BasicFilterBase)

    Public MustInherit Class BasicFilterBase
        Public Field As String
        Public MustOverride ReadOnly Property GetLinq() As String
    End Class

    Public NotInheritable Class BasicFilter
        Inherits BasicFilterBase
        Public Filter As String

        Public Sub New(ByVal Field As String, ByVal Filter As String)
            MyBase.Field = Field
            Me.Filter = Filter
        End Sub

        Public Overrides ReadOnly Property GetLinq() As String
            Get
                Return "IsNothing([" & Field & "]) = False AndAlso LCase(System.ComponentModel.TypeDescriptor.GetConverter([" & Field & "]).ConvertToString([" & Field & "])) Like ""*" & Replace(LCase(Filter), """", """""") & "*"""
            End Get
        End Property
    End Class

    Public Sub RunBasicFilter()

        If BasicFilters.Count = 0 Then
            MyBase.Filter = ""
        Else
            Dim WhereClause = (From xItem In BasicFilters Select "(" & xItem.GetLinq & ")").ToArray
            MyBase.Filter = Join(WhereClause, " AndAlso ")
        End If
        OnFilterChanged()
    End Sub

    Friend BaseType As Type

    Friend Sub New(ByVal BaseType As Type)
        Me.BaseType = BaseType
    End Sub

    Public Overrides Property Filter() As String
        Get
            Return MyBase.Filter
        End Get
        Set(ByVal value As String)
            BasicFilters.Clear()
            MyBase.Filter = value
            OnFilterChanged()
        End Set
    End Property

    Protected Overridable Sub OnFilterChanged()
        RaiseEvent FilterChanged(Me, EventArgs.Empty)
    End Sub

    Public Event FilterChanged(ByVal sender As Object, ByVal e As System.EventArgs) Implements iFilterChanged.FilterChanged
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 Microsoft Public License (Ms-PL)


Written By
i00
Software Developer (Senior) i00 Productions
Australia Australia
I hope you enjoy my code. It's yours to use for free, but if you do wish to say thank you then a donation is always appreciated.
You can donate here.

Comments and Discussions