• 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

JOptionPane.showMessageDialog

 
Ranch Hand
Posts: 42
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I am reading some response from a device which is on network,and
udp server is running on that, i am sending some command to it,
and reading response from it, and on behalf of that response,
i try to pop message through swing componet i.e,

JOptionPane.showMessageDialog(null,"some message");

,but the prob. is that on pop of this message box,GUI gets hung.

if anybody has solution,please convey.

sachindra
 
Ranch Hand
Posts: 62
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
If your code is as you wrote, there is no issue with that call. I might suggest looking at your threading model. Do you have a working thread or a thread pool that is doing asynchronous work that generates this dialog? If so, that may be where your problem lies.

What exactly do you mean "Hung up" GUI?
reply
    Bookmark Topic Watch Topic
  • New Topic