..guys how to delete content of already created Type structure?
Type MyData
field X#
field Y#
field Z#
end type
then I fill this like this, for example..
Fill.MyData=New MyData
for i=1 to 100
Fill\X#=SomethingX
Fill\Y#=SomethingY
Fill\Z#=SomethingZ
next
so..what I want is to delete this old data and fill with new one every time I call function wich containing given structure...how to do that with Types??
Type MyData
field X#
field Y#
field Z#
end type
then I fill this like this, for example..
Fill.MyData=New MyData
for i=1 to 100
Fill\X#=SomethingX
Fill\Y#=SomethingY
Fill\Z#=SomethingZ
next
so..what I want is to delete this old data and fill with new one every time I call function wich containing given structure...how to do that with Types??