VS2005 Macro - Event Handles

  • Thread starter Thread starter F3
  • Start date Start date
F

F3

I'm trying to access Handles from VS2005 Macros.
For now i'm able to access sub definition (EnvDTE80.CodeElement2 cast
to EnvDTE80.CodeFunction2)
but I need to access the "Handles Me.Click" part of the code to remove
it.
Any idea?

VB Code :
Private Sub frmMain_Click(ByVal sender As Object, ByVal e As
System.EventArgs) Handles Me.Click
End Sub
 
The code model doesn't support Handles. You need to parse function
declaration manually.
 
The code model doesn't support Handles. You need to parse function
declaration manually.

--
Peter Macej
Helixoft -http://www.helixoft.com
VSdocman - Commenter and generator of class documentation for C#, VB
.NET and ASP .NET code

ok. nice to know
thanks Peter
 
Back
Top