To get the Winodws Startup folder I could use:
textBox1.Text = Environment.GetFolderPath(Environment.SpecialFolder.Startup);
Is there a similar method for getting both the Office Startup folder, and the Word startup folder?
For example. Below are the two example of what I’m looking for:
"C:\Program Files (x86)\Microsoft Office\Office14\STARTUP"
"C:\Users\Jim\AppData\Roaming\Microsoft\Word\STARTUP"
Thanks
You will need to look inside the registry to find that information. Have a look at this page for more information. It will show you the places to look and give you examples in Visual Basic.