L
lothar.behrens
Hi,
I have a base class that defines a MustOverride method. In a derived
implementation class I
am not able to set a break point nor stepping into by a call from the
base class.
What would be wrong ?
Are there propably wrong project settings ?
The function gets called, because I see the results in the
application.
(Visual Studio 2005)
Thanks, Lothar
Imports System.IO
Public MustInherit Class Application_Base
Protected MustOverride Sub _GetApplication(ByVal sender As
Object, ByVal e As System.EventArgs)
Sub GetApplication(ByVal sender As Object, ByVal e As
System.EventArgs)
_GetApplication(sender, e)
End Sub
End Class
Public Class Application
Inherits Application_Base
Protected Overrides Sub _GetApplication(ByVal sender As Object,
ByVal e As System.EventArgs)
' Do the work
End Sub
End Class
I have a base class that defines a MustOverride method. In a derived
implementation class I
am not able to set a break point nor stepping into by a call from the
base class.
What would be wrong ?
Are there propably wrong project settings ?
The function gets called, because I see the results in the
application.
(Visual Studio 2005)
Thanks, Lothar
Imports System.IO
Public MustInherit Class Application_Base
Protected MustOverride Sub _GetApplication(ByVal sender As
Object, ByVal e As System.EventArgs)
Sub GetApplication(ByVal sender As Object, ByVal e As
System.EventArgs)
_GetApplication(sender, e)
End Sub
End Class
Public Class Application
Inherits Application_Base
Protected Overrides Sub _GetApplication(ByVal sender As Object,
ByVal e As System.EventArgs)
' Do the work
End Sub
End Class