Message 1 of 5
How to refresh/open the projects window VBA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Currently using inventor 2024, i have written a macro that automatically creates a workgroup path based on the file location of whatever is opened. I am using a work around with Sendkeys that quickly opens and closes the project window using a custom shortcut:
' Type P, R, O then Escape
SendKeys "P", True
SendKeys "R", True
SendKeys "O", True
SendKeys "{ESC}", True
while this works, i would rather use a form to completely control this macro thus requiring a different method of refreshing the project window, ideally something internal through VBA. Is there any way of doing this?