- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello Everyone,
I’m working on an Autodesk Inventor drawing template with multiple sheet sizes (A1, A2, etc.), each with its own border. The drawing border includes a company logo that I need to update based on user input.
I want to create a VBA form with two drop-down lists:
- Sheet Size (A1, A2, etc.)
- Company Logo (to select the logo)
The form should update the drawing with the correct border and company logo based on the selected options.
Questions:
- How do I link the combo boxes to dynamically update the logo in the drawing template?
- Any VBA code examples for updating the logo based on user selection?
Any help would be appreciated!
Thank you!
@WCrihfield, @jnowel , @Michael.Navara , @Curtis_Waguespack , @Andrii_Humeniuk , @JelteDeJong , @J-Camper , @A.Acheson , @bradeneuropeArthur
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
You will need to create multiple title blocks with size and logo changes (your variations) and then switch these out an in via code. This sample here creates a titleblock but you can ignore this and skip to the insertion stage.
- Create your combo box in VBA and get it to fire off a message.
- Next get your titleblock code to switch a titleblock with hard coded string.
- Next combine the two and take the string from combo box query and insert to titleblock sub routine.
Or if this helped you, please, click (like)
Regards
Alan