12-11-2018 11:24 PM
Hi,
I am new to LabVIEW. I would like to minimize already opened Excel programmatically.
I have used ActiveX to create new Excel. It is working, then I want minimize the same excel afte 3sec automatically.
I have attached screen shot with this post.
Thank you in advance
Solved! Go to Solution.
12-12-2018 09:23 AM
So just wait for 3 seconds and set the application.visible to false. Just be careful. Making Excel not visible does not mean that Excel is closed. Check the processes tab in Task Manager and you'll see an Excel instance for each time you run your code, unless you are actually calling Application.Quit each time.
12-12-2018 09:36 AM
Sorry, you said you want to minimize Excel, not hide it. Use the property Application.WindowState.
12-13-2018 04:07 AM
Thank you aputman....
I could able minimize excel with your solution.