VBA, tilføje en type til en collection
Hvorfor kan følgende kode ikke køre ?Type person
ID As Integer
Name As String
End Type
Sub test()
Dim col As New Collection
Dim p As New person
For t = 1 To 5
p.ID = t
p.Name = CStr(t) & "Name"
col.Add p
Next
End Sub
koden er taget fra:
http://www.blitzbasic.com/Community/posts.php?topic=65827