Hello ml, i try to use aspell with Visual C++. But when i try to load a dictionary my application sais: No word lists can be found for the language "en".
I installed the Full installer available at http://aspell.net/win32/files/Aspell-0-50-3-3-Setup.exe and the english dictionary availabe at: http://aspell.net/win32/files/Aspell-en-0.50-2-3.exe This is my Testapplication: I can compile and run it but it do not find the dictionary for "en". #include "stdafx.h" #include <pspell/pspell.h> int main(int argc, char* argv[]) { printf("App started.\n"); PspellConfig *config; PspellCanHaveError *ret; config = new_pspell_config(); pspell_config_replace(config, "language-tag", "en"); ret = new_pspell_manager(config); if(pspell_error_number(ret) != 0){ printf("%s", pspell_error_message(ret)); return 1; } return 0; } Thanks in advanced. Jan _______________________________________________ Aspell-user mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/aspell-user
