Hello All,
I was wondering how I can make a string pointer, point to a UDT?
Thank you in advance!
------------------
Cheers
I was wondering how I can make a string pointer, point to a UDT?
Code:
type mark well as long table as long row as long end type function pbmain as long dim buff as string ptr dim record as mark buff = varptr(record) @buff = "random data in here" end function
------------------
Cheers
Comment