Message 1 of 2
Open File Dialog Box

Not applicable
01-09-2016
07:46 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
When we click the open button from inventor, quick launch buttons show up on the dialog box. One of them being a Vault button. Using iLogic, I am prompting the user to find a file through a dialog box, but the quick launch buttons aren't showing. Does anyone know why?
InventorVb.Application.CreateFileDialog(OpenDialog) OpenDialog.Filter = "Autodesk Inventor Drawings (*.idw)|*.idw" OpenDialog.ShowOpen() ThisApplication.Documents.Open(OpenDialog.FileName)