rectangle with textarea

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • radhikams
    New Member
    • Jan 2008
    • 49

    #1

    rectangle with textarea

    Hi
    Will it be possible to embed a textarea over a drawRect(Applet ) using java.. Actually my requirement is to write some text into that rectangle whenever user needs that is dynamically.... ... Is there any solution for this.. please guide me

    Thanks
  • JosAH
    Recognized Expert MVP
    • Mar 2007
    • 11453

    #2
    Originally posted by radhikams
    Hi
    Will it be possible to embed a textarea over a drawRect(Applet ) using java.. Actually my requirement is to write some text into that rectangle whenever user needs that is dynamically.... ... Is there any solution for this.. please guide me

    Thanks
    Have a look at the JLayeredPane. You can stick your JTextArea on top of
    your drawing (a JPanel mayhap) and position it accordingly.

    kind regards,

    Jos

    Comment

    • radhikams
      New Member
      • Jan 2008
      • 49

      #3
      Originally posted by JosAH
      Have a look at the JLayeredPane. You can stick your JTextArea on top of
      your drawing (a JPanel mayhap) and position it accordingly.

      kind regards,

      Jos
      Hi Jos
      Thank You so much... That helped me alot...

      Comment

      Working...