Zur Startseite

JRSpellChecker

Zur Homepage

GetDictionaryList() As String

Function:

returns a list with all dictionaries in the current workbookpath.

         

ico_syntax Syntax:

diclist$=JRSpell1.GetDictionaryList

       

ico_weitere Return value:


string of dictionary filenames.

fires no event.

Example:

    'read all dixtionaries in the jrspell.ocx path
    JRSpell1.WordBookPath = ""
    alldic$ = JRSpell1.GetDictionaryList
    dict = Split(alldic$, ",")
    For n = 0 To UBound(dict)
      Combo1.AddItem dict(n)
    Next n