Application design in access ...

G

Gurpreet Singh

I want to design a database in access 2007 for storing word and their
meaning such that
there shd be a text box in which i shd write the word and it shd query the
internet and
find the proper meaning of that word and then store it in the table, so that
it can be used for later offline.

what code or which language shd i use to do this.
any way of doing that
 
A

Arvin Meyer [MVP]

I doubt there is a free web service to do it, but you might find one that
you can pay for at one of the dictionary websites. In any case, you can
store as many languages and words as you like in an Access database (to its
size limit of 2 GB of data) I'd design it with a base language, and a table
of languages, then a detail table with the Language and the Base, like:

tblBase
WordID
Word

tblLanguage
LanguageID
Language

tblTranslate
WordID
LanguageID
 
Top