Hi @ppolcynBNVFN. We do not have access to that built-in user interface dialog, or the controls within it through iLogic or Inventor's API. However, a few years ago I created a VBA macro, then a similar iLogic rule that basically just executes the same command that clicking the main 'Update' button executes, which shows that main dialog. Then it uses the System.Windows.Forms.SendKeys.SendWait() method in an attempt to simulate navigating that dialog using the keyboard keys. This is not only risky, because the SendKeys methods are 'blind' (don't know where they are sending the keystrokes), but also unstable, because the steps may be different for different people, and different versions of Inventor. You basically have to open that dialog normally (manually), then using only your keyboard keys, record exactly which keys you have to press, how many times you had to press them, and in what order you pressed them, in order to get the outcome you want. Then attempt to simulate sending those same keyboard keystrokes to that dialog, after the command to open the dialog has been executed. But you have to make sure that the keystrokes get sent to the right specific place, or they might cause problems somewhere else on your computer. Also, my simple code did not include interacting with that drop-down menu, which can have more or less items listed within it on your computer than someone else has. That would mean having to simulate a different number of keyboard key presses to get to the outcome you want than it would take for someone else.
Wesley Crihfield

(Not an Autodesk Employee)