TextFiled_Invisible_Action

Hi All,

I have one TextField , i want to do it's visibility false but I need

to perform some action on that TextField means when i click the

mouse at that point( where the TextField exist in Invisible place) some action shold be performed immediatly. How to do this ?

I changed the TextField size to 1 , but even though it's appearing like

cursor line ....... with background color ? how to remove this ?

can any body have any idea ?

Thanks in advance

[506 byte] By [vasmhi_1981a] at [2007-11-27 7:39:38]
# 1
Override paint() methodif you need to see the field call super.paint(g) if no just do nothing.regards,Stas
StanislavLa at 2007-7-12 19:20:19 > top of Java-index,Desktop,Core GUI APIs...
# 2
setVisible( false );
camickra at 2007-7-12 19:20:19 > top of Java-index,Desktop,Core GUI APIs...
# 3
Yes I found the solution TextField.setSize(1);TextField.setBackGround(Panel.getBackGround());TextField.setBorder(null);
vasmhi_1981a at 2007-7-12 19:20:19 > top of Java-index,Desktop,Core GUI APIs...