Internal jframe over another internal Jframe [duplicate]

0

How do I open my inner Jframe over another internal jframe? my application is ok, but when I call the internal jframe it opens more below the current one that is open. I'm using Netbeans.

 private void menCadExProdutoActionPerformed(java.awt.event.ActionEvent evt) {                                                
        // as linhas abaixo abri o form TelaProdutos dentro do desktop pane 
        TelaProdutos produto = new TelaProdutos();
        produto.setVisible(true);
        Desktop.add(produto);
    
asked by anonymous 29.07.2018 / 23:17

0 answers