Dialog RunBase

Hi,

I have a problem

protected Object dialog()
{
Dialog dialog;
;
dialog = super(); <— look hire
dialog. <— below

return dialog;
}

so to dialog I assigns super(). when I go to search for definitions

It is DialogRunBAse. and now why (below) I can’t get to the methods in DialogRUnBase class??

How can I get hire to DialogRunBase methods???

The variable is declared as Dialog, therefore you can only use methods declared in the Dialog class or its parents. That you always get a particular subtype is information unknown to the editor (and compiler). You would have to use a variable of DialogRunBase type.