Userdefined layout

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
 
M

Mattias Sjögren

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
 
A

Armin Zingler

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
 
K

KS

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
 
H

Herfried K. Wagner [MVP]

* "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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top