Thread: Question Override Controls Property
View Single Post
  #3 (permalink)  
Old 01-07-2009, 7:57 AM
prav_roy prav_roy is offline
VB.NET Forum Enthusiast
.NET Framework: .NET 2.0 (VS 2005)
 
Join Date: Sep 2005
Location: Mumbai
Age: 30
Posts: 70
Reputation: 59
prav_roy is on a distinguished programming path ahead
Default hi again

Public Class NumericUpDowns
Inherits NumericUpDown
Public Sub New()
InitializeComponent()
Me.Minimum = 0
Me.Maximum = 1000
End Sub
End Class

does this correct syntex

Regards
Praveen
Reply With Quote