├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── demo ├── Demo.TextEditor │ ├── AboutForm.cs │ ├── AboutForm.resx │ ├── AssemblyInfo.cs │ ├── DocumentForm.cs │ ├── DocumentForm.resx │ ├── Documents │ │ ├── demo.html │ │ ├── demo.rtf │ │ ├── demo.txt │ │ └── demo.xml │ ├── MainForm.cs │ ├── MainForm.resx │ ├── NOTE03.ICO │ ├── TextEditor.csproj │ ├── TextEditor.sln │ └── app.config ├── Demo.Web.CSharp │ ├── SpellCheck.aspx │ ├── default.htm │ ├── spell.css │ └── spell.js ├── Demo.Web.FreeTextBox │ ├── SpellCheck.aspx │ ├── default.aspx │ ├── dic │ │ └── en-US.dic │ ├── spell.css │ ├── spell.js │ └── web.config ├── Demo.Web.HtmlEditor │ ├── HtmlEditor.css │ ├── HtmlEditor.htm │ ├── SpellCheck.aspx │ ├── images │ │ ├── bold.gif │ │ ├── bullets.gif │ │ ├── copy.gif │ │ ├── createlink.gif │ │ ├── cut.gif │ │ ├── indent.gif │ │ ├── insertimage.gif │ │ ├── insertrule.gif │ │ ├── italic.gif │ │ ├── justifycenter.gif │ │ ├── justifyfull.gif │ │ ├── justifyleft.gif │ │ ├── justifyright.gif │ │ ├── numberedlist.gif │ │ ├── outdent.gif │ │ ├── paste.gif │ │ ├── redo.gif │ │ ├── removeformat.gif │ │ ├── spellcheck.gif │ │ ├── strikethrough.gif │ │ ├── subscript.gif │ │ ├── superscript.gif │ │ ├── underline.gif │ │ ├── undo.gif │ │ └── unlink.gif │ ├── spell.css │ └── spell.js ├── Demo.Web.VBnet │ ├── SpellCheck.aspx │ ├── default.htm │ ├── spell.css │ └── spell.js ├── Demo.WinForm.CSharp │ ├── App.ico │ ├── AssemblyInfo.cs │ ├── Demo.WinForm.Csharp.csproj │ ├── Demo.WinForm.Csharp.sln │ ├── DemoForm.cs │ ├── DemoForm.resx │ └── app.config └── Demo.WinForm.VBnet │ ├── AssemblyInfo.vb │ ├── Demo.WinForm.VBnet.sln │ ├── Demo.WinForm.VBnet.vbproj │ ├── DemoForm.resx │ ├── DemoForm.vb │ └── app.config ├── dic ├── de-DE.dic ├── en-AU.dic ├── en-CA.dic ├── en-GB.dic ├── en-US.dic ├── es-ES.dic ├── es-MX.dic ├── fr-FR.dic └── it-IT.dic └── src ├── NetSpell.DictionaryBuild ├── AboutForm.cs ├── AboutForm.resx ├── AssemblyInfo.cs ├── BOOK01A.ICO ├── DictionaryForm.cs ├── DictionaryForm.resx ├── MainForm.cs ├── MainForm.resx ├── NetSpell.DictionaryBuild.csproj └── app.config ├── NetSpell.FxCop ├── NetSpell.Setup ├── InstallerActions │ ├── AssemblyInfo.cs │ ├── InstallerActions.csproj │ ├── VirtualDirectoryInstaller.cs │ └── VirtualDirectoryInstaller.resx ├── NetSpell.Setup.sln └── NetSpell.Setup.vdproj ├── NetSpell.SpellChecker ├── AssemblyInfo.cs ├── Controls │ ├── CheckAsYouType.cs │ ├── CheckAsYouType.resx │ ├── CheckAsYouTypeState.cs │ ├── NativeMethods.cs │ ├── SpellRichTextBox.cs │ ├── SpellTextBox.cs │ └── SpellTextBox.resx ├── Dictionary │ ├── Affix │ │ ├── AffixEntry.cs │ │ ├── AffixEntryCollection.cs │ │ ├── AffixEntryEnumerator.cs │ │ ├── AffixRule.cs │ │ ├── AffixRuleCollection.cs │ │ ├── AffixRuleEnumerator.cs │ │ └── AffixUtility.cs │ ├── Dictionary.bmp │ ├── Phonetic │ │ ├── PhoneticRule.cs │ │ ├── PhoneticRuleCollection.cs │ │ ├── PhoneticRuleEnumerator.cs │ │ └── PhoneticUtility.cs │ ├── Word.cs │ ├── WordDictionary.cs │ └── WordDictionary.resx ├── Forms │ ├── OptionsForm.cs │ ├── OptionsForm.resx │ ├── SuggestionForm.cs │ └── SuggestionForm.resx ├── Interactive.bmp ├── NetSpell.SpellChecker.csproj ├── ReplaceWordEventArgs.cs ├── Spell.snk ├── Spelling.bmp ├── Spelling.cs ├── Spelling.resx ├── SpellingEventArgs.cs ├── TraceWriter.cs └── doc │ ├── NetSpell.SpellChecker.xml │ └── NetSpell.ndoc ├── NetSpell.Tests ├── AssemblyInfo.cs ├── Data │ ├── SuggestionTest.txt │ └── ValidWords.txt ├── DictionaryTest.cs ├── EventTest.cs ├── NetSpell.Tests.csproj ├── PerformanceTest.cs ├── PerformanceTimer.cs └── SpellTest.cs ├── NetSpell.WinForm.Test ├── App.ico ├── AssemblyInfo.cs ├── DemoForm.cs ├── DemoForm.resx ├── NetSpell.WinForm.Test.csproj └── app.config ├── NetSpell.build ├── NetSpell.nunit └── NetSpell.sln /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/README.md -------------------------------------------------------------------------------- /demo/Demo.TextEditor/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/AboutForm.cs -------------------------------------------------------------------------------- /demo/Demo.TextEditor/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/AboutForm.resx -------------------------------------------------------------------------------- /demo/Demo.TextEditor/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/AssemblyInfo.cs -------------------------------------------------------------------------------- /demo/Demo.TextEditor/DocumentForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/DocumentForm.cs -------------------------------------------------------------------------------- /demo/Demo.TextEditor/DocumentForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/DocumentForm.resx -------------------------------------------------------------------------------- /demo/Demo.TextEditor/Documents/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/Documents/demo.html -------------------------------------------------------------------------------- /demo/Demo.TextEditor/Documents/demo.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/Documents/demo.rtf -------------------------------------------------------------------------------- /demo/Demo.TextEditor/Documents/demo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/Documents/demo.txt -------------------------------------------------------------------------------- /demo/Demo.TextEditor/Documents/demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/Documents/demo.xml -------------------------------------------------------------------------------- /demo/Demo.TextEditor/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/MainForm.cs -------------------------------------------------------------------------------- /demo/Demo.TextEditor/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/MainForm.resx -------------------------------------------------------------------------------- /demo/Demo.TextEditor/NOTE03.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/NOTE03.ICO -------------------------------------------------------------------------------- /demo/Demo.TextEditor/TextEditor.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/TextEditor.csproj -------------------------------------------------------------------------------- /demo/Demo.TextEditor/TextEditor.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/TextEditor.sln -------------------------------------------------------------------------------- /demo/Demo.TextEditor/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.TextEditor/app.config -------------------------------------------------------------------------------- /demo/Demo.Web.CSharp/SpellCheck.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.CSharp/SpellCheck.aspx -------------------------------------------------------------------------------- /demo/Demo.Web.CSharp/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.CSharp/default.htm -------------------------------------------------------------------------------- /demo/Demo.Web.CSharp/spell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.CSharp/spell.css -------------------------------------------------------------------------------- /demo/Demo.Web.CSharp/spell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.CSharp/spell.js -------------------------------------------------------------------------------- /demo/Demo.Web.FreeTextBox/SpellCheck.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.FreeTextBox/SpellCheck.aspx -------------------------------------------------------------------------------- /demo/Demo.Web.FreeTextBox/default.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.FreeTextBox/default.aspx -------------------------------------------------------------------------------- /demo/Demo.Web.FreeTextBox/dic/en-US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.FreeTextBox/dic/en-US.dic -------------------------------------------------------------------------------- /demo/Demo.Web.FreeTextBox/spell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.FreeTextBox/spell.css -------------------------------------------------------------------------------- /demo/Demo.Web.FreeTextBox/spell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.FreeTextBox/spell.js -------------------------------------------------------------------------------- /demo/Demo.Web.FreeTextBox/web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.FreeTextBox/web.config -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/HtmlEditor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/HtmlEditor.css -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/HtmlEditor.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/HtmlEditor.htm -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/SpellCheck.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/SpellCheck.aspx -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/bold.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/bold.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/bullets.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/bullets.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/copy.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/copy.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/createlink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/createlink.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/cut.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/cut.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/indent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/indent.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/insertimage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/insertimage.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/insertrule.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/insertrule.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/italic.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/italic.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/justifycenter.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/justifycenter.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/justifyfull.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/justifyfull.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/justifyleft.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/justifyleft.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/justifyright.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/justifyright.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/numberedlist.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/numberedlist.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/outdent.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/outdent.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/paste.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/paste.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/redo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/redo.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/removeformat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/removeformat.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/spellcheck.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/spellcheck.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/strikethrough.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/strikethrough.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/subscript.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/subscript.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/superscript.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/superscript.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/underline.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/underline.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/undo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/undo.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/images/unlink.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/images/unlink.gif -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/spell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/spell.css -------------------------------------------------------------------------------- /demo/Demo.Web.HtmlEditor/spell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.HtmlEditor/spell.js -------------------------------------------------------------------------------- /demo/Demo.Web.VBnet/SpellCheck.aspx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.VBnet/SpellCheck.aspx -------------------------------------------------------------------------------- /demo/Demo.Web.VBnet/default.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.VBnet/default.htm -------------------------------------------------------------------------------- /demo/Demo.Web.VBnet/spell.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.VBnet/spell.css -------------------------------------------------------------------------------- /demo/Demo.Web.VBnet/spell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.Web.VBnet/spell.js -------------------------------------------------------------------------------- /demo/Demo.WinForm.CSharp/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.WinForm.CSharp/App.ico -------------------------------------------------------------------------------- /demo/Demo.WinForm.CSharp/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.WinForm.CSharp/AssemblyInfo.cs -------------------------------------------------------------------------------- /demo/Demo.WinForm.CSharp/Demo.WinForm.Csharp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.WinForm.CSharp/Demo.WinForm.Csharp.csproj -------------------------------------------------------------------------------- /demo/Demo.WinForm.CSharp/Demo.WinForm.Csharp.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.WinForm.CSharp/Demo.WinForm.Csharp.sln -------------------------------------------------------------------------------- /demo/Demo.WinForm.CSharp/DemoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.WinForm.CSharp/DemoForm.cs -------------------------------------------------------------------------------- /demo/Demo.WinForm.CSharp/DemoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.WinForm.CSharp/DemoForm.resx -------------------------------------------------------------------------------- /demo/Demo.WinForm.CSharp/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.WinForm.CSharp/app.config -------------------------------------------------------------------------------- /demo/Demo.WinForm.VBnet/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.WinForm.VBnet/AssemblyInfo.vb -------------------------------------------------------------------------------- /demo/Demo.WinForm.VBnet/Demo.WinForm.VBnet.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.WinForm.VBnet/Demo.WinForm.VBnet.sln -------------------------------------------------------------------------------- /demo/Demo.WinForm.VBnet/Demo.WinForm.VBnet.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.WinForm.VBnet/Demo.WinForm.VBnet.vbproj -------------------------------------------------------------------------------- /demo/Demo.WinForm.VBnet/DemoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.WinForm.VBnet/DemoForm.resx -------------------------------------------------------------------------------- /demo/Demo.WinForm.VBnet/DemoForm.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.WinForm.VBnet/DemoForm.vb -------------------------------------------------------------------------------- /demo/Demo.WinForm.VBnet/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/demo/Demo.WinForm.VBnet/app.config -------------------------------------------------------------------------------- /dic/de-DE.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/dic/de-DE.dic -------------------------------------------------------------------------------- /dic/en-AU.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/dic/en-AU.dic -------------------------------------------------------------------------------- /dic/en-CA.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/dic/en-CA.dic -------------------------------------------------------------------------------- /dic/en-GB.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/dic/en-GB.dic -------------------------------------------------------------------------------- /dic/en-US.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/dic/en-US.dic -------------------------------------------------------------------------------- /dic/es-ES.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/dic/es-ES.dic -------------------------------------------------------------------------------- /dic/es-MX.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/dic/es-MX.dic -------------------------------------------------------------------------------- /dic/fr-FR.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/dic/fr-FR.dic -------------------------------------------------------------------------------- /dic/it-IT.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/dic/it-IT.dic -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/AboutForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.DictionaryBuild/AboutForm.cs -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/AboutForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.DictionaryBuild/AboutForm.resx -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.DictionaryBuild/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/BOOK01A.ICO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.DictionaryBuild/BOOK01A.ICO -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/DictionaryForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.DictionaryBuild/DictionaryForm.cs -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/DictionaryForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.DictionaryBuild/DictionaryForm.resx -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.DictionaryBuild/MainForm.cs -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.DictionaryBuild/MainForm.resx -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/NetSpell.DictionaryBuild.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.DictionaryBuild/NetSpell.DictionaryBuild.csproj -------------------------------------------------------------------------------- /src/NetSpell.DictionaryBuild/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.DictionaryBuild/app.config -------------------------------------------------------------------------------- /src/NetSpell.FxCop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.FxCop -------------------------------------------------------------------------------- /src/NetSpell.Setup/InstallerActions/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Setup/InstallerActions/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NetSpell.Setup/InstallerActions/InstallerActions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Setup/InstallerActions/InstallerActions.csproj -------------------------------------------------------------------------------- /src/NetSpell.Setup/InstallerActions/VirtualDirectoryInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Setup/InstallerActions/VirtualDirectoryInstaller.cs -------------------------------------------------------------------------------- /src/NetSpell.Setup/InstallerActions/VirtualDirectoryInstaller.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Setup/InstallerActions/VirtualDirectoryInstaller.resx -------------------------------------------------------------------------------- /src/NetSpell.Setup/NetSpell.Setup.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Setup/NetSpell.Setup.sln -------------------------------------------------------------------------------- /src/NetSpell.Setup/NetSpell.Setup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Setup/NetSpell.Setup.vdproj -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/CheckAsYouType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Controls/CheckAsYouType.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/CheckAsYouType.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Controls/CheckAsYouType.resx -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/CheckAsYouTypeState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Controls/CheckAsYouTypeState.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Controls/NativeMethods.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/SpellRichTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Controls/SpellRichTextBox.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/SpellTextBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Controls/SpellTextBox.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Controls/SpellTextBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Controls/SpellTextBox.resx -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixEntry.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixEntryCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixEntryCollection.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixEntryEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixEntryEnumerator.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixRule.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixRuleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixRuleCollection.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixRuleEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixRuleEnumerator.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Affix/AffixUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/Affix/AffixUtility.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Dictionary.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/Dictionary.bmp -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticRule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticRule.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticRuleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticRuleCollection.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticRuleEnumerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticRuleEnumerator.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/Phonetic/PhoneticUtility.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/Word.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/Word.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/WordDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/WordDictionary.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Dictionary/WordDictionary.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Dictionary/WordDictionary.resx -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Forms/OptionsForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Forms/OptionsForm.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Forms/OptionsForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Forms/OptionsForm.resx -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Forms/SuggestionForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Forms/SuggestionForm.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Forms/SuggestionForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Forms/SuggestionForm.resx -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Interactive.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Interactive.bmp -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/NetSpell.SpellChecker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/NetSpell.SpellChecker.csproj -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/ReplaceWordEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/ReplaceWordEventArgs.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Spell.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Spell.snk -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Spelling.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Spelling.bmp -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Spelling.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Spelling.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/Spelling.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/Spelling.resx -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/SpellingEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/SpellingEventArgs.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/TraceWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/TraceWriter.cs -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/doc/NetSpell.SpellChecker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/doc/NetSpell.SpellChecker.xml -------------------------------------------------------------------------------- /src/NetSpell.SpellChecker/doc/NetSpell.ndoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.SpellChecker/doc/NetSpell.ndoc -------------------------------------------------------------------------------- /src/NetSpell.Tests/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Tests/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NetSpell.Tests/Data/SuggestionTest.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Tests/Data/SuggestionTest.txt -------------------------------------------------------------------------------- /src/NetSpell.Tests/Data/ValidWords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Tests/Data/ValidWords.txt -------------------------------------------------------------------------------- /src/NetSpell.Tests/DictionaryTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Tests/DictionaryTest.cs -------------------------------------------------------------------------------- /src/NetSpell.Tests/EventTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Tests/EventTest.cs -------------------------------------------------------------------------------- /src/NetSpell.Tests/NetSpell.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Tests/NetSpell.Tests.csproj -------------------------------------------------------------------------------- /src/NetSpell.Tests/PerformanceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Tests/PerformanceTest.cs -------------------------------------------------------------------------------- /src/NetSpell.Tests/PerformanceTimer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Tests/PerformanceTimer.cs -------------------------------------------------------------------------------- /src/NetSpell.Tests/SpellTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.Tests/SpellTest.cs -------------------------------------------------------------------------------- /src/NetSpell.WinForm.Test/App.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.WinForm.Test/App.ico -------------------------------------------------------------------------------- /src/NetSpell.WinForm.Test/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.WinForm.Test/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/NetSpell.WinForm.Test/DemoForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.WinForm.Test/DemoForm.cs -------------------------------------------------------------------------------- /src/NetSpell.WinForm.Test/DemoForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.WinForm.Test/DemoForm.resx -------------------------------------------------------------------------------- /src/NetSpell.WinForm.Test/NetSpell.WinForm.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.WinForm.Test/NetSpell.WinForm.Test.csproj -------------------------------------------------------------------------------- /src/NetSpell.WinForm.Test/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.WinForm.Test/app.config -------------------------------------------------------------------------------- /src/NetSpell.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.build -------------------------------------------------------------------------------- /src/NetSpell.nunit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.nunit -------------------------------------------------------------------------------- /src/NetSpell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/NetSpell/HEAD/src/NetSpell.sln --------------------------------------------------------------------------------