Good Morning All,
I have a project which will be distributed as an Excel add-in, it is written in C# and uses ExcelDNA.
What I would like to do is add a linklabel to my add-in main form, when clicked, I would like this to open windows explorer at a specific index, e.g. the G: drive.
Is this possible? I’ve seen some examples but haven’t been able to wrangle them,
Thanks in advance!
Absolutely:
From the Microsoft KB:
So you can call
Explorer /select,G:\yourfileto open the explorer with that file/directory selected.Put that call in
Process.Start()et voila 🙂