Hi,
We developed the Spell Check menu item to check the spelling from the mle "box" and it has been working for a while. Sincenthe office 365 was upgraded, something affected the Spell Check. The "Not in Dictionary" works in a hidden way, however, the information doesn't show in the top part of the box:
If I click the Options... button and then click OK, then the information shows up here in the "Not in Dictionary" box:
I can't find a way to make the information show up in the "Not in Dictionary" box. How do I do this? We have 2017 RE Build 1880.
Here is the coding we have had for a while:
ole_doc = ole_info.documents.add()
ole_doc.content = as_text
ole_doc.checkspelling(as_text)
la_ret = ole_doc.content
ls_text= String(la_ret)
Please help. Thanks,
R
I found the issue in my framework with MS-Word spell checking. I updated the spell checking code last night & it now works OK. The execution performance needs to still be tweaked, but I can easily do that for my official R2 release.
Seems like the main problem was to locate the speller dialogue in MS-Office and bring it to the "front & center. I tested this revised code with O365, W10 & W11.
Regards ... Chris