B
Bill Nicholson
I declared a UDT...
Structure TeamRankingsStruc
Public intRankings() As Int16 ' The dimension must be omitted in the
context of a data type definition
Public strName As String
End Structure
I want to initialize it in the declaration statement...
Dim objRankings( ) As TeamRankingsStruc = {???}
What's the syntax? I've tried every combination of braces and parens that I
can think of.
Thanks!
Bill Nicholson
Cincinnati, OH USA
Structure TeamRankingsStruc
Public intRankings() As Int16 ' The dimension must be omitted in the
context of a data type definition
Public strName As String
End Structure
I want to initialize it in the declaration statement...
Dim objRankings( ) As TeamRankingsStruc = {???}
What's the syntax? I've tried every combination of braces and parens that I
can think of.
Thanks!
Bill Nicholson
Cincinnati, OH USA