I have a DLL file where i hav a type like the one below.......
public type Items
ItemName() as string
Count as integer
end type
and i have a variable declared for this type
public t as Items
I create an object for this DLL in my client application,
dim obj as new DLLClassName
now with this object when i need to put some value into the string
array how do i do that
i tried with this
obj.t.ItemName(0)="Item0"
msgbox obj.t.Count
This doesnt seem to be working
Should i use the get and let procedures to use this