Hi all I have a type
Type Category
catId As Integer
catName As String
catDesc As String
End Type
An array of these types
Dim categories(10) As Category
I am trying to update type member variables in a loop
i.e.
categories(count).catId = newCatId
(newCatId is Integer)
however my program stops at the first such statement it comes across, this is straight
out the help manual - its simple so why doesn't this work.
Any help much appreciated.
Thanks
Mark
