Popup window with an error message

  • Wie geht das in Java am schönsten?
    Also das was man in javascript mit alert macht?

    Eine Popup-Instanz braucht unbedingt einen Component. Ist es gut hier einfach ein Window zu nehmen und diesem einen Text hinzuzufügen?

    The idea behind this technique is surprisingly simple: just go ahead and do whatever you want to without paying attention to what anybody else is doing. If there is a problem, worry about it later. (Many politicians use this algorithm, too) -- A. S. Tanenbaum, M. v. Steen, Distributed Systems

  • Stimmt, sorry.

    Die Situation ist folgende:

    Das Programm ist eine standalone Applikation. Es gibt ein JFrame. Dieser ermöglicht dem User durch ein Menü das Eingeben von bestimmten Settings (z.B. ip-Adresse). Wenn das MenuItem angeklickt wird, kommt ein JDialog, wo man eben diese Informationen eingeben kann. Ich will nur, dass ein Popup-Fenster mit "invalid IP" kommt, falls der User einen Wert < 0 oder > 255 eingibt, wo man dann auf OK klickt und wieder zum Dialog zurückkommt. Irgendwie krieg ich das nicht hin...

    The idea behind this technique is surprisingly simple: just go ahead and do whatever you want to without paying attention to what anybody else is doing. If there is a problem, worry about it later. (Many politicians use this algorithm, too) -- A. S. Tanenbaum, M. v. Steen, Distributed Systems

  • Zitat von Flowyes

    Stimmt, sorry.

    Die Situation ist folgende:

    Das Programm ist eine standalone Applikation. Es gibt ein JFrame. Dieser ermöglicht dem User durch ein Menü das Eingeben von bestimmten Settings (z.B. ip-Adresse). Wenn das MenuItem angeklickt wird, kommt ein JDialog, wo man eben diese Informationen eingeben kann. Ich will nur, dass ein Popup-Fenster mit "invalid IP" kommt, falls der User einen Wert < 0 oder > 255 eingibt, wo man dann auf OK klickt und wieder zum Dialog zurückkommt. Irgendwie krieg ich das nicht hin...

    tut es ein JOptionPane innerhalb des JDialog?

    Code
    javax.swing.JOptionPane.showMessageDialog(this,"invalid IP");
  • Zitat von a9bejo

    tut es ein JOptionPane innerhalb des JDialog?

    Ja. :) Und zwar genau so wie ich wollte, danke...

    The idea behind this technique is surprisingly simple: just go ahead and do whatever you want to without paying attention to what anybody else is doing. If there is a problem, worry about it later. (Many politicians use this algorithm, too) -- A. S. Tanenbaum, M. v. Steen, Distributed Systems

Jetzt mitmachen!

Sie haben noch kein Benutzerkonto auf unserer Seite? Registrieren Sie sich kostenlos und nehmen Sie an unserer Community teil!