Inventor, scan files created with education version

Inventor, scan files created with education version

matthias.schindler
Collaborator Collaborator
365 Views
1 Reply
Message 1 of 2

Inventor, scan files created with education version

matthias.schindler
Collaborator
Collaborator

Hi,

Is there a way to scan inventor files with VBA to see, whether that created with an education version or not, and export in an CSV/TXT file to see the result?

If yes, please provide me a sample code.

I hope you understand what I try to say!

Many thanks!

Regards,


Schindler Matthias
Technischer Produktdesigner/Anlagen- und Maschinenkonstruktion
technical productdesigner/ construction systems
| Socialnetwork LinkedIn

Umfrage zu "Inventor-HSM-Handbuch"
Eigener Artikel, wie man eine 30-seitige Testversion meines Inventor-HSM Handbuches bekommen kann
0 Likes
366 Views
1 Reply
Reply (1)
Message 2 of 2

bradeneuropeArthur
Mentor
Mentor

With this:

Public Sub loopprop()

Dim a As Application
Set a = ThisApplication

Dim b As Document
Set b = a.ActiveDocument

Dim pr As Property
Dim ps As PropertySet

'LastUpdatedWith

For Each ps In b.PropertySets
Debug.Print ps.DisplayName

For Each pr In ps
If pr.DisplayName = "LastUpdatedWith" Then
MsgBox pr.Expression
' write this to text file..... End If 'Debug.Print pr.DisplayName & vbTab & pr.Expression Next Next End Sub

 

 

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