In VB6 I think you could create a new custom type so you could do:

Code:
Public Type TYPENAME
.Parameter1 as String
.Parameter2 as String
.Parameter3 as String
End Type
When I try this in VB.NET it doesnt recognize that type of statement, how do you create a custom type in VB.NET?