David Fedor wrote:
> >Hub.c: 'DmFindDataBase' referenced from 'LoginFormInit'
>
> You've got the wrong capitalization. It isn't "...DataBase" but
> rather "...Database".
I'd say your real problem is that this error should never have compiled
in the first place. You got bit by that insane, horrible C feature that
allows un-declared functions to be called.
You should immediately go into the project settings, C/C++ Language
panel, and turn Require Function Prototypes to ON. Forever.
Or better yet, turn on the Activate C++ Compiler option.
-slj-