Here is one way that you can achieve what you want. It is not perfect. But it does meet your criteria of:
- Prevents compiling
- Puts Custom text in the Error List Window
You first need to declare a variable with the custom text you want displayed with underscores in between each word. (Yes the underscores are annoying but they are necessary)
Dim This_is_as_useful_a_description_as_your_gonna_get as String
This creates an unused variable. which in conjunction with the IDE's ability to treat warnings as errors will give you something close to what you are looking for:

You can turn on treat warnings as errors by going to your project properties and the compile tab. like so:
