Well, perhaps I understood well (something like nerd?).
Rules for good programming exist and are commonly recognized.
Readibility is not only comments. First example that comes to my mind:
If Variable1 < Variable2 And (Variable2 >= Variable3) And Condition1 = False Or Condition2 = True Then
If Variable1 < Variable2 _
And (Variable2 >= Variable3) _
And Condition1 = False _
Or Condition2 = True _
Then
Personally, I read better the second method. It is anyway a single line, but an editor could show 5 line numbers.
Maintenance
You can write many lines of code directly in a view event handler routine.
If you create a separate routine and call it from the view event handler routine you have to write at least one addition line of code; even more if you create a code module (or class) that contains this routine; but the maintenance will be easier.
I'm not a professor (nor "first class" / nerd), but you can find many better examples about these topics.
If you want to continue this argument, we should to do it elsewhere