Search results for query: *

  • Users: JimA
  • Content: Threads
  • Order by date
  1. JimA

    Question Subclassed controls WithEvents in the forms designer

    I created a simple class to add a little functionality to a button control: Public Class pwButton Inherits System.Windows.Forms.Button Public Sub New() MyBase.New() ForeColor = Color.Indigo BackColor = Color.LightGray Height = 10 End Sub End Class After building, the...
Back
Top