GET PUT and UDT
Visual Basic
1
Posts
1
Posters
0
Views
1
Watching
-
The PUT statement can be used to write a UDT to a file and GET can recover the UDT, or an array of UDTs. I see that GET can flatten out (write as a series of byte values) the contents and structure of a UDT. Is there a way that I could perform that same flatting and reconstituion function without actually writing a file? Is there a way to discover the structure of a UDT without knowing it advance? I would like to accept a UDT, any UDT or an array of UDTs as a parameter to a OCX, without knowing in advance the caller's UDT structure. Be able to receive a UDT, examine it's structure, manuipulate the contents as a string or byte array, and then return the (changed) UDT to the caller. Is this possible?