Change behavior of Visual Basic.NET code designer?

  • Thread starter Thread starter Chris
  • Start date Start date
C

Chris

Is it be possible to change the behavior of the way VB.NET adds the "End
Sub" after you create a subroutine? For example...when you type:

Sub Foo(stuff as things)

Visual basic will put:

End Sub

after it.. Could this be changed so that the End Sub created by the IDE
looks like this?

End Sub 'Foo

Thanks,
Chris
 
* "Chris said:
Is it be possible to change the behavior of the way VB.NET adds the "End
Sub" after you create a subroutine? For example...when you type:

Sub Foo(stuff as things)

Visual basic will put:

End Sub

after it.. Could this be changed so that the End Sub created by the IDE
looks like this?

End Sub 'Foo

That's not supported.
 
Back
Top