Hi All
Am I missing some magic trick? There seems to be a lot of typing involved
in the following upgrade
In VB6 I have
Class Customer
Public CustomerID as long
Public CustomerName as string
' and lots of other properties
End class
Once this is upgraded, it seems that to get this to work I have to implement
an interface
Public Interface _Customer
Property CustomerID as long
Property CustomerName as string
' and lots of other properties
End interface
Yet the upgrade wizard does not create the interface for me, I think it
should both create the interface and hook up the properties
Is there a way of doing this?
Thanks
Kirsten