G
Guest
Good Day All,
I have the following VB6 Type
Type IAListRecordType
lID As Long
strName As String * IALISTSTRSIZE
End Type
I need to convert this to VB .NET. How do I do this? I have come up with
Structure IATaskListRecordType
Dim lID As Long
Dim strName As String * IATASKLISTSTRSIZE
End Structure
However, the * IATASKLISTSTRSIZE will not compile. I get a message
"End Of Statement Expected"
Any suggestions would be appreciated. Thanks!
Dan
I have the following VB6 Type
Type IAListRecordType
lID As Long
strName As String * IALISTSTRSIZE
End Type
I need to convert this to VB .NET. How do I do this? I have come up with
Structure IATaskListRecordType
Dim lID As Long
Dim strName As String * IATASKLISTSTRSIZE
End Structure
However, the * IATASKLISTSTRSIZE will not compile. I get a message
"End Of Statement Expected"
Any suggestions would be appreciated. Thanks!
Dan