In my criteria find it works find but I must say
in my instructions
the
string is "Carrier='SpeedyAir',Origin='SFO'"
but what I do is populate my comboBoxes origin and destination with all origin and destination not allowing duplicates.
In my CriteriaFind I pass a string such as below:
String criteria = new String(origin+","+destination);
although its not the same but it works find I use the StringTokenizer an it works find but I dont have = as others have talked about
"Carrier='SpeedyAir',Origin='SFO'" Suns Example
"origin+","+destination" my example I dont search airlines specifically just origin and destination...
Is this OK??
Thanks Lisa