|
-
Apr 4th, 2006, 11:43 AM
#1
Thread Starter
Junior Member
word pronunciation and synonym
AOA,
in a form i have placed one richtextbox now i want my application give me the Pronunciation and a synonym of word written in richtetbox
any one can help me in this regard
-
Apr 4th, 2006, 11:58 AM
#2
Re: word pronunciation and synonym
Synonyms are accessible through Microsoft.Office.Core:
VB Code:
Dim synonym As New Microsoft.Office.Interop.Word.Application
Dim arr As Array
arr = DirectCast(synonym.SynonymInfo("Yes").SynonymList(DirectCast(synonym.SynonymInfo("Yes").MeaningList, Array).GetValue(1)), Array)
You have to refernce word's COM object.
As for pronunciation, I think you're SOL. Even Microsoft Sam can't do that accurately. If you want though, you can set Microsoft Sam up to read the word to your user... But like I said, he's not very good.
Last edited by sevenhalo; Apr 4th, 2006 at 12:13 PM.
Reason: Make it Option Strict happy.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|