Why is it that when i use: this on dialog event... that it always returns with an error saying * $dialog: 'pp' name in use (line 27, hindpass.mrc)
Code:
on 1:dialog:PP:close:close: {
  .echo -q $dialog(pp,pp) ;line 27
}
----------------------------------
with the alias to start the dialog as 
alias g2pp {  
  if (!$dialog(PP)) {
    .echo -q $dialog(pp,pp)
  }
}

I realize that if I rename the pp to pp2 or something in the $dialog(pp,pp), it would go with a same dialog, in a different placing, although, Id rather it just pop up the same one, as otherwise it would be an endless cycle of renaming... Any suggestions?