peteschulte
IS-IT--Management
Hello Coders,
We use filetostr() and VFP 8 limits strings to 16,777,184 chars. Any suggestions on how to break up this file or re-set VFP or ... ?
Thanks,
Pete S
We use filetostr() and VFP 8 limits strings to 16,777,184 chars. Any suggestions on how to break up this file or re-set VFP or ... ?
Code:
xmlcontent = FILETOSTR(xmlfile)
lcXML = xmlcontent
loXMLAdapter = CreateObject("XMLAdapter")
loXMLAdapter.LoadXML(lcXML,.F.,.T.)
Thanks,