Search found 2 matches

by worcestersource
Sun Jun 26, 2011 7:34 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Formatting Large Numbers
Replies: 5
Views: 5054

Re: Formatting Large Numbers

Hi Townsend,

If you pop onto RevOnline/User Samples and search for "accounting", you'll find my accountancyFormat() function that will format the large numbers for you in a nice and neat fashion.

Cheers,


Steve
by worcestersource
Sat Mar 20, 2010 9:54 am
Forum: Internet
Topic: Retrieve a specific Node from XML
Replies: 9
Views: 11547

Re: Retrieve a specific Node from XML

You've got a few mismatched close tags there, so the XML library won't be able to form a tree for you. Specifically, in each record, you've closed the <first_name> tag with a </last_name> tag. <record> <id>100</id> <last_name>smith</last_name> <first_name>john</last_name> <country>usa</country> </re...