According to the docs
Does that mean I can somehow have a pointer to an array so I can dynamically add/delete/sort array elements in the UDT?????
Reason I ask, is I have 2 situations that a UDT that has elements that can be an array of elements would be PERFECTLY suited for. However, I will not possibly know how many would be in the array until run-time.
Is it possible? and if so, how would I declare the array element of the UDT????
The total size of a UDT must be known at compile-time, so items like dynamic strings, which vary in size, cannot be part of a TYPE structure. A STRING PTR can, however, since a pointer is implemented as a DWORD.
Reason I ask, is I have 2 situations that a UDT that has elements that can be an array of elements would be PERFECTLY suited for. However, I will not possibly know how many would be in the array until run-time.
Is it possible? and if so, how would I declare the array element of the UDT????
Comment