Hi Scott,
I thought of that and have. But it made me start to think and:
pDocTemplate = new CSingleDocTemplate(
IDR_MAINFRAME,
RUNTIME_CLASS(CrtfParseDoc),
RUNTIME_CLASS(HERichFrame ),
RUNTIME_CLASS(CrtfParseView));
Instead of CMainFrame still had the problem. So the only thing I could
come up with was the:
#define ID_VIEWSCROLL ( WM_APP + 100 )
And found a second ID_VIEWSCROLL that didn't show on a search, or as a
warning, but with a different number! But when I opened that
'resource.h', it was there. That resource was a third resource in my
global includes, it should not have been there, I renamed it as
'junk.h'. What should have been my one and only define in globals should
have been in my 'heres.h'.
BTW, all my #include "resource.h" where that and not #include
<resource.h>, so I'm not sure why it got dug up.
Now that I ditched that extra resource.h it works fine.
Thanks for your time.
Best, Dan.