Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Cursor to XML using XMLAdapter
Message
General information
Forum:
Visual FoxPro
Category:
XML, XSD
Environment versions
Visual FoxPro:
VFP 9
OS:
Windows Server 2003
Network:
Windows 2003 Server
Database:
Visual FoxPro
Miscellaneous
Thread ID:
01087940
Message ID:
01091344
Views:
66
David,

Thanks for your field renaming suggestion, it works a treat. For the archives here is the routine I used for this:
FUNCTION SetNameTitleCase(loAdapter, loTable, lcField)
	lcUniField=STRCONV(lcField,5)
	lcUniLowField=LOWER(lcUniField)
	loField=loTable.Fields(lcUniLowField)
	loTable.Fields.remove(lcUniLowField)
	loField.XMLName=lcUniField
	loTable.Fields.Add(loField,loField.XMLName)
ENDFUNC
Rgds,
Nick
Previous
Reply
Map
View

Click here to load this message in the networking platform