Spell Checking

  • Thread starter Thread starter lopamudra pathak via DotNetMonster.com
  • Start date Start date
L

lopamudra pathak via DotNetMonster.com

Hi,
I am checking the spells in my rich text box. Now whenever the page is
laoded the WINWORD.EXE get instatiated and after it is auto deleted.
This spell checking is working fine.
But I want to know will it be possbile without using WINWORD.EXE?
The system which is not having MSOffice, there my code will fail.
can anybody help me to check the spells w/o instatiating the WINWORD.EXE?
Thanks.

This is the working code which is using the MSWord.

WordApp.Documents.Add()
rngRange = WordApp.ActiveDocument.Range

rngRange.InsertAfter(hidRTBText.Value)
Dim SpellCollection As Word.ProofreadingErrors
SpellCollection = rngRange.SpellingErrors
If SpellCollection.Count > 0 Then
lstWrongWords.Items.Clear()
lstAlternatives.Items.Clear()
Dim iword As Integer
Dim newWord As String
For iword = 1 To SpellCollection.Count
If SpellCollection.Item(iword).Text <> TextBox2.Text Then
newWord = SpellCollection.Item(iword).Text
lstWrongWords.Items.Add(newWord)
End If
Next
End If
 
Lopamudra,

I don't know it in any language. Don't forget that it has than to be in
almost every language in the .Net framework.

The most simple support on languages is in my opinion still very few. With
the current version it is AFAIK only in 6 languages possible to make a
deployment package. And than you have to use the VS from that language.

Cor
 
Hi Cor,
That would be great if you could guide for if any web service is
available or we can do the same thing in client side javascript using third
party web service.
 
Hi,
Can anybody will help me to get the spell checker without using word.
Will it be possible throgh javascript, web services,etc.
Thanks.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top