okay - I've about had it. In order to thwart my impending self destruction....would someone please post what the code would look like if you have a two dimensional array....like...for instance....
String [] [] empArray =
{ {"111111111", "222222222", "333333333", "444444444", "555555555"},
{"Mary Lou Buford", "Billy Bob Jackson", "John Doe", "Jane Doe", "Sally Jo Pitkin"} };
and you want to pass a social security number (such as the ones listed above) to the function and return the corresponding employees names.
Please make it as plain as possible....
Thanks in advance.
EB