• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

deleting a component.

 
Ranch Hand
Posts: 257
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am dragging a component from 1 panel to another in my program. As soon as I drop a component in the destination panel i want to delete the component in the source panel.How do I acheive this. I tried doing this

But its not working . Can someone help please
Thanks
 
Ranch Hand
Posts: 77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Try revalidate() or validate() on the container of the component you are trying to delete after you do setVisbile(false);
It might solve your problem.
Thanks,
Payam.
 
sun par
Ranch Hand
Posts: 257
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
It does not work, am getting runtime error, the type of component returned is java.awt.dnd.DragSourceContext. so I guess am getting run time error because I am trying to convert it to JComponent.
Just calling setVisible(false) and revalidate() does the job. Thank you.
[ April 04, 2003: Message edited by: sun par ]
reply
    Bookmark Topic Watch Topic
  • New Topic