M
Mo
Hi,
I have an onld VB6 DLL with many classes defined in *.cls files. I
like to convert them to VB.Net. I have a couple of questions
1) Get/Set is not supported in VB.Net how do I convert this code so
VB.Net does not come up with error
Class MyAppClass
Public Property Get UserId() As Long
UserId = intUserId
End Property
Public Property Let UserId(ByVal pUserId As Long)
intUserId = pUserId
End Property
End Class
2) Can I use the "cls" file extension or should I change it to "VB"
extension
3)Is there a VB6 to VB.Net translator?
Thanks
I have an onld VB6 DLL with many classes defined in *.cls files. I
like to convert them to VB.Net. I have a couple of questions
1) Get/Set is not supported in VB.Net how do I convert this code so
VB.Net does not come up with error
Class MyAppClass
Public Property Get UserId() As Long
UserId = intUserId
End Property
Public Property Let UserId(ByVal pUserId As Long)
intUserId = pUserId
End Property
End Class
2) Can I use the "cls" file extension or should I change it to "VB"
extension
3)Is there a VB6 to VB.Net translator?
Thanks