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);