This week's book giveaway is in the Agile and other Processes forum. We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line! See this thread for details.
i was wondering if there is a method to display a list/set in an awt.List? i had a look at the API for java.awt.list but i only found this add() method! :roll: and this add method only displays an item, not the whole list
thanks hannah [ August 20, 2005: Message edited by: H Melua ]
Tom McC
Greenhorn
Joined: Jul 28, 2005
Posts: 21
posted
0
H,
I as well looked at the API for it and couldn't find a way to add a whole array. If you can get away with using swing components, a JList has constructors that take arrays or Vectors as the beginning items. If not, you might be stuck with:
H Melua
Ranch Hand
Joined: Jan 04, 2005
Posts: 168
posted
0
thanks for replying tom, thats what i ended up doing for the mean time, but i dont feel its professional enough if there is better way of doing it, im not familiar with applets at all, im only learning at home!!
thanks hannah [ August 21, 2005: Message edited by: H Melua ]