Application design in access ...

  • Thread starter Thread starter Gurpreet Singh
  • Start date Start date
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
 
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
 

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