I am coming up against this problem on a regular basis which makes me think I'm not understanding the constructor theory too well.
I'm sur eyou will see the problem as soon as you read .....
Yup, it's the ole narrowing conversion thingy. Is there a way around this as I'm having to invent stupid ways to get around it like this, which is rediculous!!
Thnx
I'm sur eyou will see the problem as soon as you read .....
Visual Basic:
Public New(ByVal lngEquipmentID as Long)
Public New(ByVal blnLiveRecords as Boolean)
Public New(ByVal strSupplierName as String)
Yup, it's the ole narrowing conversion thingy. Is there a way around this as I'm having to invent stupid ways to get around it like this, which is rediculous!!
Visual Basic:
Public New(ByVal lngEquipmentID as Long)
Public New(ByVal blnLiveRecord as Boolean, ByVal strAnyCrap as String)
Thnx