Hi, I was under the impression that the following would work, but i get a page fault every time i run it.
Is there no way to use variable length strings in a UDT?
-Mike
------------------
Code:
#COMPILE EXE #DIM ALL #REGISTER NONE TYPE test l AS LONG sPtr AS STRING PTR END TYPE FUNCTION PBMAIN() DIM t AS TEST t.l = 2 [email protected] = "Test" END FUNCTION
-Mike
------------------
Comment