Userdefined layout

  • Thread starter Thread starter KS
  • Start date Start date
K

KS

How can I edit the layout of event methods header ?

I want to see it so the the "Handles XXXXX" is in the next line under the
Sub name.

KS, Denmark
 
How can I edit the layout of event methods header ?

I want to see it so the the "Handles XXXXX" is in the next line under the
Sub name.


Sub YourHandler(... params ...) _
Handles SomeObj.SomeEvent



Mattias
 
KS said:
How can I edit the layout of event methods header ?

I want to see it so the the "Handles XXXXX" is in the next line under
the Sub name.

Use the line continuation characters (" _"):

sub (...) _
handles bla.blub
 
Oh yeh Mattias !

Yes I know that ;-)) - but I want to edit the predefined layout so that the
editor itself does the job with f.ex. the Button_click-event.

KS, Denmark
 
* "KS said:
Yes I know that ;-)) - but I want to edit the predefined layout so that the
editor itself does the job with f.ex. the Button_click-event.

Maybe that's possible with an add-in... I don't have any experience
with that, but maybe it will point you into the right direction.
 
Back
Top