does anyone know how to fix this error? i have been on it for hours and im pretty sure that its a simple fix.
Method 'New' has multiple definitions with identical signatures.
In addition to getting this error
VB also asks me for an identifier.
don't know if you need it but here's segment of code that i have:
Public Sub New()
' Initialize the DateTimePicker control instances. The arrival date is
' today and the checkout date is tommorrow. Also set the maximum arrival
'date to today.
'set maximumarrival date to 180 days from today. set min checkout date
'to tommorrow.
'set max checkout date to 180 days from today.
dtpArrivalDate.Value = Today
dtpArrivalDate.MinDate = Today
dtpArrivalDate.MaxDate = Today.AddDays(180)
dtpCheckoutDate.Value = Today.AddDays(1)
dtpCheckoutDate.MinDate = Today.AddDays(1)
dtpCheckoutDate.MaxDate = Today.AddDays(180)
' Initialize the Rollaway check box to unchecked.
chkAdditionalRollawayBed.CheckState = CheckState.Unchecked
' Initialize the button group so that the Deluxe button is selected.
radDeluxe.Checked = True
' Initialize the Number of Guests numeric up down control.
nudNumberOfGuests.Value = 4
End Sub