L
Leon
Hi Everybody
I have a small structure
Structure SkuInfo
Dim SkuNo As String
Dim Priority As Integer
End Structure
and Array
Dim arrSkus() As SkuInfo
Before adding next element to this array I want to make sure
that I do not have elements with the same SKUNO.
I am trying to use indexof, but do not know how to use it with array of
structures.
I realize I can use For... Next loop, but hope there is a better way to do
this.
Thanks in advance
I have a small structure
Structure SkuInfo
Dim SkuNo As String
Dim Priority As Integer
End Structure
and Array
Dim arrSkus() As SkuInfo
Before adding next element to this array I want to make sure
that I do not have elements with the same SKUNO.
I am trying to use indexof, but do not know how to use it with array of
structures.
I realize I can use For... Next loop, but hope there is a better way to do
this.
Thanks in advance