this is a usefull method to check spelling in testbox//make all referencesMicrosoft Office 12.0 Object LibraryMicrosoft Word 12.0 Object Libraryusing System;using System.Collections.Generic;using System.Reflection;using System.Text;using System.Web.UI.WebControls;using Microsoft.Office.Interop.Word;public void SpellChecking(TextBox tBox){try{Application app = new Application();if (tBox.Text.Length...
Read More