Ted Shab wrote: > Hello, > > I've been using a JWindow instead of a JFrame because I didn't want the Java > Icon and Min/Max buttons - this is a kiosk style application. However, if I > put a JTextField on this application, I can't enter text into it. If I > switch to a JFrame the JTextField becomes editable. I also tried a > TextField and got the same result. > > Any one know either why this strange behavior occurs (1.4 on W2K), or if > not, how to eliminate the Icon and Min/Max buttons from a JFrame
JDK1.4 had some weird changes regarding input focus behaviour. Try to request the focus for the input field after displaying the window and everything should work fine. Gojko Adzic http://www.gojko.com _______________________________________________ Advanced-swing mailing list [EMAIL PROTECTED] http://eos.dk/mailman/listinfo/advanced-swing
