Open Excel on top

Hi,

Is there a way to open an Excel file on top?

gr.
Dennis

Knipsel

After

ex.Visible = True

try

ex.WindowState = Excel.XlWindowState.xlMinimized
ex.WindowState = Excel.XlWindowState.xlNormal

to force the window to minimize and then restore

1 Like

Thanks @Thomas_Corrie that did the job! :+1:

1 Like