Are you deploying the resources and calling GlyphReaderLoader with the path? The best place to do this is in the static constructor of your main form -- it has to happen before any OCR is called.
public static
Form1()
{
GlyphReaderLoader loader = new GlyphReaderLoader(@"c:\path_to_resources");
if (!loader.Loaded)
{
MessageBox.Show("Failed to load OCR Resources");
}
}
Where Form1 would be replaced with your form's name and the path would be to where you are deploying GlyphReader resources. The path you choose should then have the directory path
GlyphReader\v2.0\
inside of it, with the resources in the v2.0 directory.
You can find the necessary files in your installation at
C:\Program Files\Atalasoft\DotImage 6.0\bin\OcrResources