AutoCAD Inventor :: File Is Checked Out By Another User
Dec 15, 2004
Why on ocassion Inventor tells me that the file I am working on is checked out by another user and that I cant save the changes. I find this a bit bizzare as I am the only person in the office using inventor although it is installed in other machines.I realise that all I have to do is steal the checkout, but I would really like to understand why it does this.
View 9 Replies
ADVERTISEMENT
Apr 24, 2013
Is there any way to easily determine if any file in a user's workspace is checked out from Vault?
I'm building an Inventor addin to clear files from a user's workspace. Before i delete any files I need to know if the user has any files checked out. I was hoping there was an easy way(inside of Inventor) to programmitically check if a folder contains any checked out files.
Win7 x64 - 16gb ram
i7 3610qm
FirePro M4000
Inventor 2013
ETO 6.1
View 1 Replies
View Related
Nov 19, 2009
I have recently installed Inventor Suite 2010 on a new computer and I am receiving this error on a majority of my files.
Cannot modify the library file W:T46DManufacturing Drawings8300673-.idw
Component W:T46DManufacturing Drawings8300673-.idw is not checked out to you. Edits are not allowed on this file.
I understand this has something to do with using Vault. However since I am the only one using Inventor and these files are not shared, I did not install Vault on the old computer or the new one.
View 3 Replies
View Related
Aug 17, 2012
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.
View 7 Replies
View Related
Aug 27, 2012
I am trying to set up a search folder in Vault that would find files checked out by all the users.
In my Tools---Find I would set the Property for Checked Out By, Condition to contains. Now, what to enter in the Value window so it searches all the users, the thing is I dont want to enter all the user id's, there are quite few of them.
it here instead of Vault's message board but Vault's one seems to be rather inactive.
View 2 Replies
View Related
Jan 5, 2012
I was under impression that Library (custom) parts should not get checked out.
But in our case they do - It should not be happening since we have multiple users working with the same parts.
View 8 Replies
View Related
Apr 10, 2012
I've some user-defined iProperties in my idw-file. As soon as I set the file to "read-only" (via explorer RMB->properties) these iProperties are not shown on the drawing sheet when i open the drawing. ow to abandon this effect?
View 3 Replies
View Related
May 21, 2012
I would like to have a rule that will add specific user parameters to a part file. These parameters need to be formatted so the width, depth and thickness will control the description of the part.
IE:
Width=4
Depth=2
Thickness=3/16
DESCRIPTION = TS <Width>X<Depth>X<Thickness>
I would like to format each parameter so that the:
Format=Fractional
Precision=1/16
Unit string=False
This is what I have so far:
oMyParameter=ThisApplication.ActiveDocument.ComponentDefinition.Parameters.UserParameters
oParameter=oMyParameter.AddByExpression("Width", "TOP_RAIL_WIDTH", UnitsTypeEnum.kInchLengthUnits)
oParameter.ExposedAsProperty=True
oParameter.Units="in"
[Code]...
The TOP_RAIL parameters are from a linked file.
View 9 Replies
View Related
Jan 27, 2012
working on one big file with Vault/multultiple user scenario?
Lets say you design a car and having the frame and the body you have different guys that come in and do electrical, fuel system, so on... They need to work with the frame and the body doing their parts, since thats the reference for them.
But only one guy can check it out. We try the approach that one system is an entire independent assembly inserted into the top assembly but its not perfect.
View 1 Replies
View Related
May 7, 2013
After getting Vault installed on our server and successfully setting up users and connections, I used the Library Transfer Guide to move our Content Center (including custom) to the Vault. I then changed the Inventor Application Options -> Content Center -> Access Options to Autodesk Vault Server.
This seems to have worked, as I can Place from Content Center when in an assembly, and it is pulling standard content as well as our custom files properly from the vault. However, in the instructions that I used for the installlation, it was suggested to stick with a standard folder structure within the Vault, namely two Library Folders named 'Content Center Files' and 'Libraries' and also a regular folder named 'Designs'.
I created those folders prior to transferring the library, as I thought they would be populated with the standard/custom content. This was not the case and I am curious when these folders come into play? *they are empty*
Also, today I will be attempting to 'Check In' a project to the Vault that I recently completed; does this usually maintain structural relationships between files?
Would you recommend using a single project structure in vault for two people? It seems, since we won't be working on the same project at the same time, having a single project would not be relavant to our situation..
Inventor 2011 / Windows 7 Pro SP1 64bit
Dell Precision T3600
Intel Xeon E5-1607 @ 3.00GHz
AMD FirePro V4900
20 GB Ram
View 7 Replies
View Related
Jul 24, 2013
Whenever anyone at the company tries to open a model that has a decal part in it, the File Edit window comes up asking if the person wants to check out the part. As decals generally never change after they are created, they are never desired to be checked out. After saying no to check out, the window then reappears stating that the local is never than the vault, even though you just finished a Get operation. Is there anyway to keep these files from needed constant updating?
View 5 Replies
View Related
Feb 24, 2013
I'm working on Autodesk VBA, and I'm trying to get user input on which vertex to use for a constrain. I want to make a macro that can go into part edit, allow user to select a vertex, and then automatically set up the constraint. Initially I wanted to do this in a single macro, using this short piece of code
while oSelectSet.Count <>1
DoEvents
Wend
While this worked when run directly from VBA, if I call it as a macro in Autodesk itself, the DoEvents doesn't seem o work because I wasn't able to make any selection at all. I googled and it seems like this is just how macros are.
So I split the code into a 2 subs and a function (as attached), and put them into separates rules that I call using a form in Autodesk. The first sub "Meta1Pin1_1" works, then I would select a vertex in edit mode. But when I go ahead and call the second sub "Meta1Pin1_2", I get the error message that I created which says no vertex is selected. But if I select a vertex and call the second sub again, it will work.
So I've been trying different things and I realize that every time when I first call the second sub, my selection is erased teh moment it goes into the sub. But, for some unknown reason, the selection will remain when I call it the second time. I can't figure out what exactly happened between the first and second call of the same sub, that allowed the selection to remain.
' prepares assembly for user input by grounding bones and going into part edit
Public Sub Meta1Pin1_1()
Dim oDoc As AssemblyDocument
[Code]....
View 2 Replies
View Related
Aug 20, 2013
how to change this. I get tired of having to remove the grid over and over
View 11 Replies
View Related
Feb 27, 2013
is it possible to write a plug in that runs when a user does something.example. you start inventor and open a assembly file the user selects a part and the plugin automatically runs.no pussing buttons, no quick key, it just runs.
View 2 Replies
View Related
Sep 21, 2012
If a drawing is opened by another user, I want to retrieve the name of that user. I presume that is in the dwl locking file. I I can't find any info on this topic. How do I read/extract the user name from a dwl file with .NET/c#?
View 2 Replies
View Related
Jan 21, 2013
why i can set my autosave and autosave location and for the day it will stay on but sometime during the week it will uncheck by itself. could it be from a update?
View 3 Replies
View Related
Jan 10, 2014
Is it possible to export a TIN file so a GIS user can use it with some Carlson software? He's having trouble using .XML's or DEM's. If I could find where ACAD stores the .TIN file for my surface, I'd just send that to him.
View 3 Replies
View Related
Sep 11, 2012
After testing a simple culvert and pipe, it appears that inlet control is not checked for pipes. Does this mean that I have to model all storm sewers in a network as culverts just to check inlet control?
View 2 Replies
View Related
Jul 10, 2012
There are four of us in our office who all installed Autodesk Product Design Suite Premium 2013. One of us cannot see thumbnail previews in the file open dialog box or in the preview area of Windows explorer. She's using Windows 7, 64-bit.
View 9 Replies
View Related
May 30, 2012
trying to create contours from an exiting survey file. I am new to Civil 3d 2012. What I need to accomplish is create a 3d topo from the points with contours and then create a 3d model of the area.
View 9 Replies
View Related
Sep 23, 2013
I am trying to locate a .wdp file with minimal user input. this is what I have so far
;All file saved in this folder
(setq filedir "I://PROJECTS//")
;User will put the following in, but there might be a small description after 915-01. That is why I have a wildcard
(setq filename (strcat "915-01*"))
; string together everything
(setq nextlevel (strcat filedir "JOB " filename "*" "//ACAD"))
;; the final path should look something like this:
I://Projects// JOB 915-01(something here... could be anything or nothing)//ACAD//915-01(something else could be here as well).wdp
;set file extension
(setq fileext ".wdp")
; search files
(setq wdp_file (vl-directory-files nextlevel (strcat filename "*" fileext)))
I am confused on where and when I can use wildcards for searching directories.
View 1 Replies
View Related
May 9, 2012
I'm trying to make a VBA macro which would use the user name set in Inventor. I haven't been able to find anything on how to get that username. I would think it would be easily accessible, since it's commonly used to fill in i properties.
Here is it's location in the options.
Options - General tab - User name: (top right)
View 2 Replies
View Related
Jan 26, 2013
I have an assembly file with parts assembled, and I want the user to move and position the assembled part into a position as they desire, and then run VBA to extract coordinates information to do further calculation.
So, what I want to do is creat a VBA code that does the following in sequence
1. VBA runs code to assemble the parts (I can do this)
2. go to the autodesk interface and allow user to manipulate the part
3. when user presses a key (e.g. "enter", "space"), the control returns to VBA
4. VBA run some code to extract the coordinates and do some calculations (I can do this too)
there is something like an input box that waits for the user to click ok, before continuing to run the rest of the coding. But I realise that the input boxes and message boxes do not allow users to work on the model in the background. Since I need users to move/rotate the part to the desired position, I can't simply use input and message boxes.
View 4 Replies
View Related
Apr 23, 2012
I need to copy about 15 user parameters from 1 part to about 300 others. I used the DA to copy the iproperties but the user parameters are also needed.
View 2 Replies
View Related
May 4, 2011
How to switch from the Ribbon interface to the Classic interface in inventor 2012? It is not in the same place as in inventor 2011. This ribbon interface just don't do it for me.
View 6 Replies
View Related
Jul 18, 2005
Is there a way to create user parameter as TEXT Paramters does not accept the text paramaters . we always have tor create parameters as numbers.
View 9 Replies
View Related
Aug 24, 2012
Looking for sample VBA code to get all referenced documents from an assembly and add a boolean user parameter to each (parts and sub assemblies). I have been trying to modify peices of code I have found on this forum and Mod the Machine, but have had no luck so far.
There may also be standard content center parts in the assembly as well that I would like to somehow identify so I can skip over them.
View 1 Replies
View Related
Apr 22, 2013
Most of the time, I delete an user parameter without problem. But, in a part, I got an error for two of them and I don't understand why. I create a new parameter and redirect all dependencies from the old one to the new. (oldParam.Dependencies.Count = 0).
But when I try to delete it, I've got an error. Also, when I try to delete it by the interface, I don't see the Delete option.
View 8 Replies
View Related
Feb 25, 2013
Is it possible to add a user parameter into a general table in a drawing?
Example:
If I create a multi value text parameter called "Design", and give it two values "open" & "closed". Is there a way to add the chosen value into a general table on the drawing.
Autodesk Product Design Suite 2013
Win 7 Professional 32bit
Intel(R) Xeon(R) W3565 @ 3.2GHz QC
4.0 GB Ram
1GB Nvidia Quadro 2000
View 1 Replies
View Related
Jun 10, 2011
Parameters with a text value, How do I add userParameter? In iLogic
Examples. DoubleValue)
Sub Main()
Dim oCompDef As PartComponentDefinition
oComDef = ThisApplication.ActiveDocument.ComponentDefinition
Dim oParams As Parameters
oParams = oComDef.Parameters
Dim uParams As UserParameters
uParams = oParams.UserParameters
strVal= uParams.AddByExpression!("strVal", 0.15, "mm")
iLogicVb.UpdateWhenDone = True
End Sub
View 6 Replies
View Related
Oct 6, 2012
But I was wondering if it is possible to contol the insertion of dynamic blocks and it user definerable parameters from a excel-text file.
I am surveying a section of pipework and I need to display the brackets that are supporting the pipes. As there are numerous pipes on top of each other I have decided to show the brackets in plan and isometric view.
I think I have made the dynamic block ok and have numerous stretch/move and scale parameters working correctly.
But the only way that I can see of chaging these parameters at the momment is by manually typing them in the properties tool pallete for each individual block.
So I was thinking that if I can store the correct values that I need for each parameter in the dynamic block on our data logger along with the correct E,N,Z insertion point is it possible for this file to change the parameters in the dynamic block for example, If I have the correct insertion point stored and then have 10 parameters stored with that point for simplicity I store as A=5.00,B=8.00,C=0.100 etc and these correspond with the parameters in the dynamic block will this file be able to alter the dynamic block as the values in the excel/Text file are displayed.
View 2 Replies
View Related