I cannot seem to make the dialog in my javame program disapear. I have used dispose but nothing. Any help. Here is the code
Dialog d=new Dialog("Comment added");
Label lb=new Label(response);
d.setLayout(new BorderLayout());
d.addComponent(BorderLayout.CENTER,lb);
d.show();
d.dispose();