with the absolute path can you use a network path ie:- \\fileserver\spelling\em_GB.aff
I did not try, but I expect it to work.
Just keep in mind that loading the dictionary is done asynchronously and can take up to a couple of seconds to load.
gdc: this is the export file created when exporting shortcuts, the Online manual says gdc myshortcut.gdc , so my question is what should be the location of myshortcut.gdc.
you can have them wherever you want ; for instance, if you have:
- GDC in c:\fjs\gdc2.32\
- the .gdc file in c:\data\shortcuts\
you can do:
c:\fjs\gdc2.32\bin\gdc.exe c:\data\shortcuts\myapp.gdc
or
gdc.exe c:\data\shortcuts\myapp.gdc
or
c:\fjs\gdc2.32\bin\gdc.exe myapp.gdc
You just need to either pass the absolute path of the .gdc to gdc.exe, or the relative path to the current directory.
Or, if the file association is set, simply double click on the .gdc file within your file explorer.