Skip to content

CommentAfterSub

Nonki Takahashi edited this page Apr 24, 2017 · 3 revisions

CommentAfterSub

Write comments for subroutines after each Sub. Because comments before Sub are treated as a part of previous subroutine or main in Visual Basic code generated with [Graduate] command.

Sample Code

Sub Dummy
  ' Dummy subroutine
EndSub

instead of

' Dummy subroutine
Sub Dummy
EndSub