Lint is a program invented to give K&R C type checking stronger than
"portable assembler". It went on to complain about nearly everything
in a source file.
Is there a lint-style parser for RC files, to look for GUI or syntax
trouble?
At the very least, one could check that each menu item and dialog
label has a & hot key, that the accel tables reflect in the menus,
etc.
--
Phlip
I found one! (That was quick;)
It's here: http://www.c2.com/cgi/wiki?MsWindowsResourceLint
It reputedly detects...
* Button missing hotkey
* Duplicated Control hotkey
* Duplicated MenuItem? hotkey
* Missing & in Menu Label
* Missing accelerator prompt in Menu Label
(the Ctrl+C thing on the right)
* Missing StringTable? help for MenuItem?
* Prompt at end of control list
* Prompt before control without tabstop
--
Phlip