Hi, Can anyone tell me how I could get rid of the default titlebar of the frame while running swing applications? Also, can I change the default icin of the "teacup", in the upperleft corner of the titlebar? thanks..
Not sure about the title bar, think it might be handle by the window manager of the OS so you could be limited to what you can do. To change the icon, use setIconImage method in the Frame class.
If you don't want the title bar, use Window instead, but you can't set icon on that either.
Originally posted by Felix Devasia: Hi, Can anyone tell me how I could get rid of the default titlebar of the frame while running swing applications? Also, can I change the default icin of the "teacup", in the upperleft corner of the titlebar? thanks..