When we new up a DocuemntSpellChecker it loads several of our binaries into memory and we don't know why?
We create one like this:
DocumentSpellChecker sp = new DocumentSpellChecker();
As soon as we hit that code all of the binaries that are using a control with a DocumentSpellChecker are loaded into memory. This causes problems because we do a check on those binaries later in the app when we attempt to load a form from them. We check if the binary is up to date and if not replace it. We can't do that, however, because the documentSpellChecker has already loaded them into memory.
Any ideas?
We create one like this:
DocumentSpellChecker sp = new DocumentSpellChecker();
As soon as we hit that code all of the binaries that are using a control with a DocumentSpellChecker are loaded into memory. This causes problems because we do a check on those binaries later in the app when we attempt to load a form from them. We check if the binary is up to date and if not replace it. We can't do that, however, because the documentSpellChecker has already loaded them into memory.
Any ideas?