AutoCAD Inventor :: Vault Add-In Not Allowing Open (Check Out All)
Oct 24, 2012
Following a recent Inventor crash (another topic entirely), I re-started Inventor and logged in to Vault Workgroups, all with no problems. From the Ribbon Vault Tab I chose Open, browsed to and selected one of my I-Assemblies. I clicked the down arrow next to the Open button at the bottom right corner of the dialog box, and was surprised that the Open (Check Out All) option was grayed out. This has never been the case before now. I have checked with quite a few other Assembliles and I-Parts, all of which are currently in sync with the Vault, and none of them allow me the option of Open (Check Out All).
This has persisted for 2 days now, meaning I have shut my workstation down completely and re-started each morning. Is there some system setting or variable that needs adjustment? Is there some disconnect between the Inventor Vault add-in and Vault Workgroups itself that results in this option being disabled?
Autodesk Product Design Suite Premium 2013
Inventor 2013 64-bit Edition
Win7-64, 8-core Intel® Xeon® CPU W3550 @ 3.07GHz
NVIDIA GeForce GTX 560 Ti
454 GB HD, Intel® ICH10R SATA AHCI Controller
SpaceNavigator, 3.14.2 / 6.14.0 / 3.18
I am having issues getting my .dwg files to check back in to Vault Basic. I can get all different types of files (.iam .ipt .idw) to check in without issues, but .dwg files hang and Inventor will eventually lock up.
I've tried disabling Visualization and I still cannot make it past this point. I can even tell it to check in everything at once, and it will breeze through the other files but any .dwgs will hang.
My PC Config:
Windows 7 Professional 64-bit Intel(R) Core(TM) i7-2600 CPU @ 3.40GHz 16 GB RAM Dual AMD Radeon HD 6450 Running Product Design Suite 2014
We are currently using Inventor 2010 Professional Suite. Most of the users here are working with AutoCAD Mechanical. For the most part, it does the job. The person that previously used Inventor has moved on to bigger and better opportunities. Recently a new person was hired to utilize the Inventor software for initial designs. The original software was loaded on a new machine and everything seemed to work fine. Inventor was able to checkout files from the vault and were able to be manipulated accordingly. The issues began when the individual started to check the files back into the vault. It would appear everything works fine but the files never appear in the vault. Even if we create a new directory and attempt to check them in, the new directory is created in the vault but the files will not check-in.
If we use AutoCAD Mechanical, the files will check-out and check-in fine using the addin tools. It would appear all the rights are setup correctly. We even changed the new user to administrator and it still did not work. No one else has Inventor installed, but I am about to install it on another machine this Thursday when IT is in.
We have attempted to even drag the files into the vault just to see if that would work, even though we know this method is usually not the best. Still no success.
Running WINDOWS OS 7 PROF. INTEL (R) CORE (TM)2 QUAD CPU Q9550 2.83 GHZ 8.00 GB RAM Hard drive WDC WD10EARS-00MVWBO ATA DEVICE, 872 GB FREE OF 931 GB
I'm wondering if it is possible to check-in drawing into vault using i-logic?
If you check-in a drawing into our vault, it automaticly exports a .dwf to a storage server. We also have a simple button for making .pdf of the drawing to sent to the customer.
What i want to ensure is that the .dwf file and the .pdf file are the same. So when i press "make a .pdf" the rule will save my document, make a .pdf and (if possible) check it into vault. So from that point the .pdf for the client and the .dwf on the server are the same.
I have a Visual Basic.NET add-in that displays a dialog in Inventor. The code in this dialog opens some parts in the background. This has always worked fine, but now I'm working with Vault and when the files are not checked out Inventor displays a small window and asks the question if you want to check out the file. The problem is that this small windows stays behind my add-in dialog. Is it possible to show the check out windows on top of my add-in dialog? I tried form.show and form.showdialog, but this doesn't seem to make any difference.
I am getting the attached error when trying to check in an assembly and idw. The Vault is pointed to the C drive, so I'm not sure why it isn't finding the files within the C.
I use something like the code shown below as part of an Inventor add-in that automatically checks in modified parts and drawings. Everything works perfectly except for one problem. After a file is checked in using this process, the Vault Preview is unavailable. The message in the Preview window says "Unable to view the file selected. Click the 'Open' button to view with an external viewer."
Dim byteArray() As Byte = IO.File.ReadAllBytes(fullFileName)Dim fileBom As Autodesk.Connectivity.WebServices.BOM = serviceManager.DocumentService.GetBOMByFileId(vaultFile.Id)serviceManager.DocumentService.CheckinFile(vaultFile.MasterId, Environment.UserName, False, IO.File.GetLastWriteTime(fullFileName), associations, fileBom, False, vaultFile.Name, vaultFile.FileClass, false, byteArray)
What needs to change so that the Vault Previews will be maintained? This is with Inventor/Vault 2012, but a solution using a more recent version would also be great.
Im working on a program that checks out syncronizes some data with our erp system and then checkes in the files again to vault. all works fine but in vault all links to other files are gone? when i checkin the files from inventor manuel then the links are ok in vault. therefore i wonder if it is possible to run the vault checkin dialog "hidden" and just pass in some predifined options and checkin to vault.
I know this has to do with the users network profile because it is only happening to a few people. I just upgraded all of our workstations to New Win7 boxes running IV2012 products. Everybody is working well except a couple of people.
Cannot open an ipt or a dwg template from Vault. When he attempts to open it he sees a warning, Unexpected Error . He's able to open the iam template from Vault though.3 other people access Vault and aren't having any issues opening the same templates.
We are using Inventor 2013 and Vault Professional 2013, with Windows XP.
Today I happen to be checking in and out many drawings. All display the cogo points message at the lower left corner, and all are taking 4 minutes to check in. UNREASONABLE! Especially when I have five minutes of work to do in each drawing.
I have shot some moving footage with a Canon D5 MkIII. The computer has Adobe CS6 installed. However the computer is not allowing me to open the files.
if I open a drawing with DocumentManager.Open("drawing.dwg", false) and it is already open (or the user has no rights to write to it), the drawing is opened in READONLY mode without warning.
Is there way to check if DocumentManager.Open("drawing.dwg", false) will open the drawing normal or READONLY?
When I tried to make a sketch plane on one of the surfaces of the revolved feature, it only had the option to edit the original sketch or the feature even though the sketch that I'm trying to create is on a different plane. There is one surface that allows me to add a sketch plane.
I need to export data to an excel file but I need to check if the file is already open.
Searching the internet I found this but I don't know what "imports" to use to use to enable it.
Public Function FileInUse(ByVal sFile As String) As Boolean If System.IO.File.Exists(sFile) Then Try Dim F As Short = FreeFile() FileOpen(F, sFile, OpenMode.Binary, OpenAccess.ReadWrite, OpenShare.LockReadWrite) FileClose(F) Catch Return True End Try End If End Function
I am wondering if it is possible to do a style update (or style update check) upon open of a drawing?
The example would be that I have stuff made from way back that the colors/dimension sytles ect dont match the current standard and upon opening a file where they are not current, it would either prompt to update immediatly OR update automatically with no prompting (preferred method).
I am doing a massive amount of updates from old files recently and to save myself 1 - 3 clicks per drawing would be wonderful.
is there a way to suppress all check dialogs box during opening a document. I need to open a document in "silent mode". Now I have a first dialog for missing Xref, another one for shx font...
How can I set AutoCAD Application to open all document without show this dialogs box? System variables?
We are trying to get task scheduler to automatically download certain files from the Vault. Templates and Styles. The templates work great, but there is no way to specify any filetypes other than Inventor filetypes. Am I missing something? Is there a way to specify non-inventor filetypes?
When I get latest versions of files from Vault Explorer and then open them in Inventor, the vault status of the files in the Inventor browser shows a triangle with an exclaimation mark inside of it. When I move my mouse over the status icon, it says "vault not open". There is no response when I try to log into the Vault within Inventor.
I upgraded from 2009 to 2010 Inventor and Vault two weeks ago. Everything worked fine until today. Vault Explorer seems to be working fine. The ADMS console seems to also be working fine. I can do all the routine tasks in both programs. The problem is only in Inventor.
I am using the autodesk suit 2011. The problem I am having is when I copied a block from autocad using the copy command, then used the paste command in an inventor .dwg and it inserted as an autoCAD block. When I check the finished drawing into vault the autocad block does not show up and will not print.
We have a user that has been experiencing problems when checking files into vault. The problem occurs when he copies a design (the drawing and part file) in vault then checks out the files to make changes, saves it and checks it back in, Inventor doesn't check in the changes. The preview window (i.e.. dwf that's generated on check in) is correct however the thumbnail is wrong and when you open the latest version none of the changes have been made.
This is taking up a lot of time because he has to make the changes twice and also has to be constantly looking back in vault to files he has just checked in to make sure they are correct.
We are a mid sized company the builds our parts from raw materials. Steel Coils, Steel tubing, Steel plate, etc.
We are have been migrating from MDT to Inventor over the last few years. We are now trying to implement Vault and integrate that data into our ERP system. We would like to model a part and assembly and check that into Vault then pass the BOM into our ERP system.
It all sounds good up until I looked at how our part files were structured. There is not BOM in an ipt that I have found phantom or referential. Here is my problem
It takes 1 lb of a .0625" thich steel sheet that is 6.5" wide. We stamp our product in a 200 ton press producing a finish componet.Problem 1- Part1.ipt (model of my stamping) does not have a lower level it is a component in Inventor there is no BOM that I have found.Problem 2 - Part2.iam uses part1ipt but we punch a hole in it and push material outward to create a lip so we can lap weld the next part.When I try to extrude this feature I can only cut the part I cannot add material or deform it in any way.Problem 3 - We also manufacture bent tubes. We consume 1.5 ft of part C to make part D. I cannot insert 1.5ft of a part that is 20ft long as we buy it. then we bend it. I cannot insert a 1.5ft part into an assembly and then bend it.
Major problem - even though I can change the dwg file or idw file to add a parts list Vault does not put this information in the Item master BOM.
I have opened Vault for the first time and I don't know how to access it, it wants a username/password/server/database. I am one of two people in the company how use inventor etc so there is no existing server/database within my company so I assume i have to set one up?
We have a product line that relies heavily on iAssemblies. The main assembly and several layers of subassemblies are all iAssemblies. All the children that needed to be generated so far were added to the vault.
If I activate a different member in the main assembly factory, Inventor wants to update some of the various children. For some reason, vault won't prompt me to check out the children. I get a variety of errors, unless I manually check out the children.
There are at least 20 iAssemblies involved at different levels of this thing, not to mention all the iParts thrown in as well.
I'm using the free Vault that doesn't have a batch print option so I've been writing some code that does the trick.
The code lists open drawings, assemblies and parts, and depending onwhich is selected, displays a list of all the drawings associated with the file and it's sub-components.
Everything is good except that when the list of drawings is populated I am only able to search through the working folder for drawings. This means that if the drawing has been modified by another, or the drawing has not been opened on the local computer, it will not print (or print the old version).
Is there a way to pull the latest files from vault into the working folder automatically? Currently the only way this is possible is by selecting "Get/Checkout" in vault and downloading the files.
A customer has a problem with the add-in of Vault in Inventor. Log In and Log Out options are lost as shown in the picture. The machine already formatted and installed applications again but the problem continues.
I am making a copy design of a big file, two things I need to change manually which takes lots of time:
I need to change the status of files from Reuse to Copy, also I need to change the paths to the right ones as the paths that kick in by default when I change the main directory on the top are not right.
Is there a quick way of changing status of all the files to Copy, kinda shift and highlight or the way Vault renames files with Replace option? With big assemblies connected with 10 drawing files doing it all by hand.
I started using inventor when he started the job. I have been using Inventor for about 3 years now. My question is that I have always practiced good file management at every level of a project from single parts to large assemblies; however at this new job the file management is horrible, in the last 3 years the company has been through 13 different drafters, thus each drafter was saving files in different location and names making finding parts and assemblies a nightmare.
The problem I am having is that the lead designer is insisting that we implement vault, and that it will solve our problems, However I feel that we needed to develop a universal file and naming convention first, get our file hierarchy in order before we try and implement vault. There will only be 2 of us accessing the cad files and I don't think that vault would even be a good fit for our work flow.
We are trying to migrate our 2010 and earlier inventor files that exists in our vault 2012 professional fully replicated environment to The latest inventor release.
We are trying to utilize the task scheduler. but when attempting to use the "Migrate Files from Vault" and select the option to add folders. we receive several pop ups, one after another. The header states "folder" and in the message box is simply "1000" then an "ok" button.
After clicking ok a half dozen times the dialog finally comes up to select the folder, but the entire vault is not available in the selection window. I have tried this on several machines and 2 different databases. Same result.
I'd like to get the Vault file Id from an inventor document on the local workspace in order to be sure that it has been checked in (I want to be sure that all the files on the local disk have been checked in).