Open Form always on Top

Hey!

I have a form for picking Orders in the stock.
On open form i want them to see additional pick advice.

OnOpenForm

Code: Select all
SalesExtTxtLineRec.SETRANGE(SalesExtTxtLineRec."Document Type",SalesHeader."Document Type");
SalesExtTxtLineRec.SETRANGE(SalesExtTxtLineRec."Document No.",SalesHeader."No.");
SalesExtTxtLineForm.SETTABLEVIEW(SalesExtTxtLineRec);
SalesExtTxtLineForm.RUN;

Works pretty fine except of one thing; The “SalesExtTxtLineForm” is opened in the background.

Is there a command like “SalesExtTxtLineForm.ONTOP” or something?

So far…

Jakob