The easiest way I can think of is to use a script to store an array of the
names and then use the Sort method to sort the names. Alternatively, you
could store the names in a database and sort the table in the database. Not
sure scripting is the friendliest way to do this, but here's a sample
script.
<script language="javascript">
var list = new Array("apples", "oranges", "grapes", "kiwis", "grapefruit",
"pomegranates", "pears");
for(i = 0; i < list.length; i++)
{
document.writeln(list
);
}
list.sort();
document.writeln();
for(i = 0; i < list.length; i++)
{
document.writeln(list);
}
</script>
--
Lisa Wollin
Programmer Writer
Microsoft Corporation
-z said:
With FP2K, I have a list of Employers hiring located in a table...
Is there an ez way to keep that list in alphabetical order
If not in a tbl, any suggestion how I can do it
Thank you