On 11/2/06 11:04 AM, "Dave Herndon" <[EMAIL PROTECTED]> wrote:
> Thanks Mark,
> I settled on this and it works SWEEEET ! Thanks For your help. Now to
> finish it up. Anybody have a good way to convert all text in a list to ALL
> CAPS? It would be nice to get a consistent look in the database. Here is the
> script I settled on.
>
> repeat with x = 1 to the number of items of MyList
> put word 1 to -1 of item x of Mylist into item x of Mylist
> end repeat
Try this:
repeat with x = 1 to the number of items of MyList
put toUpper(word 1 to -1 of item x of Mylist) into item x of Mylist
end repeat
Ken Ray
Sons of Thunder Software, Inc.
Web site: http://www.sonsothunder.com/
Email: [EMAIL PROTECTED]
_______________________________________________
use-revolution mailing list
[email protected]
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution