Display "Extrude" dialog box using a Inventor VBA Macro

Display "Extrude" dialog box using a Inventor VBA Macro

isocam
Collaborator Collaborator
418 Views
3 Replies
Message 1 of 4

Display "Extrude" dialog box using a Inventor VBA Macro

isocam
Collaborator
Collaborator

Can anybody help?

Does anybody know how to display the "Extrude" dialog box using a Inventor VBA Macro?

Please see the attached picture.

Many thanks in advance!!!!

Darren

0 Likes
419 Views
3 Replies
Replies (3)
Message 2 of 4

bshbsh
Collaborator
Collaborator

call:

ThisApplication.CommandManager.ControlDefinitions.Item("PartExtrudeCmd").Execute
0 Likes
Message 3 of 4

isocam
Collaborator
Collaborator

The code, shown below, shows the extrude description (help) dialog box rather than the extrude dialog box that I am after. Do I need to select the extrusion firstly and if so, how?

 

Kindest Regards

 

Darren

0 Likes
Message 4 of 4

bradeneuropeArthur
Mentor
Mentor
Public Sub ExtrudeWithDialog()
Dim CmdMan As ControlDefinition
    Set CmdMan = ThisApplication.CommandManager.ControlDefinitions.Item("PartDMExtrudeCmd")
    'PartDMExtrudeCmd
    CmdMan.Execute
        CmdMan.Execute2 (True)

End Sub

This shows the same behavior as in default inventor!

 

Regards,

Autodesk Software: Inventor Professional 2018 | Vault Professional 2018 | Autocad Mechanical 2018
Programming Skills: Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Dimension Component! | Partlist Export! | Derive I-properties! | Vault Prompts Via API! | Vault Handbook/Manual!
Drawing Toggle Sheets! | Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes