Hi All,
I would like to know if it's possible to fire a event whenever I add
a new class file to my project? What I want is to automate the process of
adding some region and header comment to each new file that I add to my
project. It's possible? If yes can you give me a direction?
Give you an example:
In the Project Menu I add a class and name it Something.vb
The the "macro event" will add these thing automaticly:
'************** ******
'Francois
' 50/05/2005
'
'This class do some things
'************** *******
Public Class Something
#region "Declaratio n"
#end region
#region "Methodes"
#end region
....and so on
end class
Thank
Francois
Sorry for my english
I would like to know if it's possible to fire a event whenever I add
a new class file to my project? What I want is to automate the process of
adding some region and header comment to each new file that I add to my
project. It's possible? If yes can you give me a direction?
Give you an example:
In the Project Menu I add a class and name it Something.vb
The the "macro event" will add these thing automaticly:
'************** ******
'Francois
' 50/05/2005
'
'This class do some things
'************** *******
Public Class Something
#region "Declaratio n"
#end region
#region "Methodes"
#end region
....and so on
end class
Thank
Francois
Sorry for my english
Comment