VB 2 VB.NET
-
I all, I want to convert a structure from VB to VB.NET and I don´t know how specify the max length of an string... Sample VB 6.0: ------------------------------------ Public Type YY XX As String * 10 End Type ------------------------------------- Code in VB 7.0: ------------------------------------ Structure YY XX As String '<--- ¿How could I do it? End Structure ------------------------------------- Thanks all "On the 8th day, God started debugging"
-
I all, I want to convert a structure from VB to VB.NET and I don´t know how specify the max length of an string... Sample VB 6.0: ------------------------------------ Public Type YY XX As String * 10 End Type ------------------------------------- Code in VB 7.0: ------------------------------------ Structure YY XX As String '<--- ¿How could I do it? End Structure ------------------------------------- Thanks all "On the 8th day, God started debugging"
-
I all, I want to convert a structure from VB to VB.NET and I don´t know how specify the max length of an string... Sample VB 6.0: ------------------------------------ Public Type YY XX As String * 10 End Type ------------------------------------- Code in VB 7.0: ------------------------------------ Structure YY XX As String '<--- ¿How could I do it? End Structure ------------------------------------- Thanks all "On the 8th day, God started debugging"
-
Ok, that didn't Format correctly at all! Try this: Private Structure Test Dim MyString As String End Structure
Ok thanks Mikasa, I found it in MSDN. Regards "On the 8th day, God started debugging"