- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi everybody,
I have to create a software to migrate Inventor's documents from an old version to a new version.
I wrote all code in C# and all work fine except 1 file of skeleton.
Attached you can download an Pack and go thath contains the models.
My code is simple, I open a file and save it but if I try to do the save with "TUR_ASM00061_Skeleton.ipt" I get an exception.
I tryied to save starting from parent assembly (TUR_ASM00061_GT.iam) using save 2 but I get no result.
I tryied to modify the "TUR_ASM00061_Skeleton.ipt" and save and nothing.
A piece of my code
try
{
inventorService.GetInventor().SilentOperation = true;
document.Save();
}
catch (Exception)
{
nonMigrati.Add(fm);
}
Someone can help me to solve this problem?
P.s. If I open the TUR_ASM00061_GT.iam and perform save all manualy all is migrated correctly
Thanks a lot.
Solved! Go to Solution.