thanks to everyone that responed to my previous problem.Here in my displaytable method my if statments give me an error that say incompatable types required boolean found int.Any tips?
You are not allowed to place assignments (=) in if statements. You are only allowed to make comparisons in if statements (==) and call methods that return boolean. This is a Java build-in security checking mechanism.