AutoCAD Inventor :: Custom Iproperty Reverts Back To Original Value After File Is Saved

Apr 11, 2012

In the attached file there are two custom iProperties that cannot be perminantly updated nor deleted. The iProperties are "size" and "purch_qty". These iProperties were created and set using a custom macro but they are of course accessable via the standard iProperties dialog. I can change the values for these particular iProperties but as soon as I save the file they revert back to their original values. Same goes for trying to delete them. All other iProperties, custom and otherwise, seem to behave normally.

The sketch in this file originated with a 2D DXF file for a vendor supplied aluminum extrusion quite a few years back. The original file has been copied (save-as...) to about 20 different files over the years. The iProperties in question were added years after most of the files were created, Each file is exibiting the same problem. These files are used in a LOT of assemblies. The thought of recreating all these files from scratch and updating the assemblies is not very inviting.

No other IPT files seem to be having this issue.

Inventor 2012 SP-1
Acad 2012 SP-1
Vault 2012 Update 1 Hotfix DL18480860
Windows 7 Pro 64-bit SP-1
Quad core Xeon 2.26GHz 12 GB
Quadro 4000, 7936 Mb, driver 8.17.12.6570 (265.70), Dual Monitors
SpacePilot Pro, driver 3.3.107.0

View 3 Replies


ADVERTISEMENT

AutoCAD Inventor :: Link Standard IProperty To Custom IProperty?

Aug 7, 2012

I'm looking to see if there is a way to link the revision number to a custom iProperty in the same part.  Our laser requires a specific output for programming, but I only want this to show up on actual lasered parts as we don't need it on parts that are sawcut.  Basically what I would like to do is create a custom iProperty that I can link to the title block for that reads RV:<Revision>.  Is there a way to do this?  I'd rather not create a separate drawing template for lasered parts as we've got about 100 templates for our various customers the way it is.

View 6 Replies View Related

AutoCAD Inventor :: Add Custom IProperty To BOM Using API?

Jan 3, 2012

I would like to add a Custom iProperty to the BOM using API.

It would mimic the "Add custom iProperty columns" dialog.

View 5 Replies View Related

AutoCAD Inventor :: How To Remove Custom IProperty With ILogic

Aug 12, 2013

I am migrating our old Inventor data to our new system. I will do an ilogic script for that. 

I know how to add custom iProperties with iLogic but how can I remove them? Is it possible with iLogic? I would like to clean out all old iProperties that we don't need anymore.

View 2 Replies View Related

AutoCAD Inventor :: How To Add Custom IProperty To Parts List

Jan 16, 2012

I am trying to add a custom iProperty from my assembly to the drawing parts list.  According to the help wiki, I'm supposed to click Column Chooser > New Property > Custom Properties List (click here to see the relevant wiki page--also see the attached screenshot called Custom Property Help.png).

When I click on new property, there is nothing about Custom Properties List. 

View 2 Replies View Related

AutoCAD Inventor :: Can't Get Inventor 2013 Show A Custom Iproperty Correct

Jun 18, 2012

I can't get Inventor 2013 show a custom iproperty correct.My iLogic rule is this: 

iProperties.Value("Custom", "myvol")=volume = iProperties.Volume

But the custom iProperty is a Yes or No.Had no problem with this in Inventor 2011.

View 2 Replies View Related

AutoCAD Inventor :: Use ILogic To Change Custom IProperty In Several Components At Once

Mar 25, 2013

I've been using iLogic. I'm creating a template assembly that will be used for multiple jobs. Therefore, the job number will be changing. I want a custom iProperty in ALL parts and sub-assemblies (cleverly call it "Job #" maybe) that I can include an a separate property called "Drawing #" which whose value will be [some text]-<Job #>-[some more text]. I want to be able to update all the "some text" parts manually for each component, but I want the Job # to update automatically. I need this property because I have a column in all my Parts Lists called "Drawing #" which tells the drawing number for any given part or assembly.

Ultimately what I want to do is open a text or Excel file, enter the job number, open my Inventor drawing, and have every Drawing # entry in every parts list magically update to the correct job number.

I've managed to use iLogic to do just that with a single .ipt/.iam file. But I have dozens upon dozens of components in the main assembly. I'd like to run some rule or hit some button or do something that will cause the Job # property to update for ALL sub-assemblies and parts, so that all my parts lists reflect the change.

View 4 Replies View Related

AutoCAD Inventor :: Multiple Lines Of Text In A Custom IProperty

Aug 29, 2006

way to get multiple lines of text in an iProperty? I am using a custom iProperty named "Title" so users can insert the drawing title into the title block using the custom iProperty. The only problem is that the title comes out all on one line and goes outside the title block. Should I be using iproperties or is there a better way?

View 2 Replies View Related

AutoCAD Inventor :: ILogic Rule To Change Custom IProperty

Dec 11, 2012

I am after writing part of rule for ilogic,i need the rule to fill out a custom property with information for me. I have a part that has 2 parameters

parameter 1 = Frontplanangleparameter 2 = Endplanangle
Custom property
iProperties.Value("Custom", "DESC2") =

I need the rule to examine both parameters and if both angles = 0 then DESC2 = ""And if any parameter >0 then

iProperties.Value("Custom", "DESC2") = bevel

View 1 Replies View Related

AutoCAD Inventor :: Copy Leader With Custom IProperty Fails?

Dec 21, 2011

I have gotten in the habit of using a leader text with a custom iproperty to do material call outs on my drawings. I have been doing the first one then copy/pasting the leader onto each piece i want to call out. 

This worked flawlessly in 2010 and has worked well previously in 2012. For some reason it is not working at all in this particular .idw.

work flow is to create the first instance, copy. right click outside the view border and select paste. Then attach to as many different parts as needed.

attached is the error message I get.

The custom iproperty is text. 1/2 a36 or 4x4x3/8 Angle 

View 1 Replies View Related

AutoCAD Inventor :: ILogic To Create Custom IProperty In Sub-component

Apr 1, 2013

I found this code to create a custom iProperty in the current, open document:
 
Dim propertyName As String = "MyProperty"Dim propertyValue as String = "Test Value"customPropertySet = ThisDoc.Document.PropertySets.Item("Inventor User Defined Properties")Try prop = customPropertySet.Item(propertyName)Catch ' Assume error means not found customPropertySet.Add("", propertyName)End TryiProperties.Value("Custom", propertyName) = propertyValue 

I have a iLogic rule that goes through each component of an assembly, counts how many times it occurs in the assembly, and then assigns that value to an iProparty (i.e. it inserts the total quantity of the part in some iProperty). Currently, however, it assigns the value to a default iProperty value, "Authority". I'd like, instead, for it to assign it to a custom iProperty called "Total QTY". However, I don't know how to tell Inventor to do the above code for a component in the assembly rather than the assembly itself. Below is my entire code. I've labeled where I'm guessing the above code should go. How I'd modify the above code to create the iProperty in the component being processed by the rule at that point?

Current
 
''True comment: Begin '''Commented-out Begin '''PartDocumentObject = 12290''AssemblyDocumentObject = 12291Dim openDoc As DocumentopenDoc = ThisDoc.DocumentDim docFile As DocumentIf openDoc.DocumentType = 12291 Then''If the open document is an assembly:''For each document referenced in this document:For
[code]......

View 2 Replies View Related

AutoCAD Inventor :: ILogic - Blank Size Custom IProperty Using Flat Extents Length And Width

May 7, 2012

I want to have a Blank size custom iproperty using flat extents length and width this is what i did but gives error is there a way to get this to work the way I want it to? I dont want a Length and width to be seperated would like it all in one.

iProperties.Value("Custom", "BLANK SIZE")=Round(SheetMetal.FlatExtentsLength, 3)"X"=Round(SheetMetal.FlatExtentsWidth, 3)

View 2 Replies View Related

AutoCAD Civil 3D :: Creating Labels - Text Reverts Back To Layer 0

May 15, 2013

When I am trying to label an object, surface slope, elevation or lot line distance my text reverts back to layer 0.  I have checked the Label style composser and have everything that I see set to the layer I want it on.  When creating the label I am even physically on the proper layer but when I make the label it still goes to 0.

View 1 Replies View Related

Lightroom :: Setting To Force Saved File Back In Line Next To File That Was Edited In PS?

Jan 23, 2013

When I send a file to Ps from Lr, edit that file then save it, Lr puts that file at the end of the line instead of next to the file I was working on.  When you have 600 photos in a down loud, it is a pain to scroll through the photo's to find your place again. 

Is there a setting to force the saved file back in line next to the file that was edited in Ps?

View 3 Replies View Related

Photoshop :: Dragging Window Reverts To Original Position

Apr 15, 2013

I drop multiple photos into Photoshop then drag one at a time away from the tab bar in order to place these photos onto one layered image. I can do this but the photo I have dragged down remains positioned where i dragged it to and cant be freely moved to another part of the screen. It springs back like its on a rubber band. This is a problem when I wish to close the floating window and don't have the top right close button visible.

I have to return it to the tab top bar in order to open it then close the window. I previous versions of PS this was not a problem and now requires all these extra steps to solve. Its very frustrating when I have to work like this all day. I have PS CS6 on MS WIN7. Is there a preference selection I can make. I want to make photoshop windows behave like MS windows and remain where I drag them to.

View 9 Replies View Related

Photoshop :: Saved Image Is Darker Than Original File

Jan 6, 2003

I'm trying to save a file as web content (either jpg or gif) but when I save the file it is much darker than the original.

If I view the saved version of the file in PS there are no issues, but once I view it in a browser, the issue arises.

Is there a way to control this? I've never had this problem before while working with photographs or other files.

For the record I'm using PS 6.0 for PC and the browser I'm using is IE 5.5.

View 3 Replies View Related

AutoCAD Inventor :: How To Revert An Edited BOM Back To Original Quantities

Apr 26, 2013

Is there a quick way to revert an edited BOM back to the original quantities before they were edited?

View 2 Replies View Related

Lightroom :: Get Back The Original Filename Even Though The File Is Missing

Feb 21, 2013

I imported 900 RAW images from my desktop into Lightroom, edited them, renamed the filename, and exported them into JPGs. Since I no longer needed the RAW images on my desktop I moved them over to an external hard drive. So now the images are still visible in my Lightroom catalog, but there is no photo to back it up since I moved the original files to the external hard drive. After realizing that I exported the images at 150 dpi instead of 300 dpi I need to re-export the images from lightroon at the proper resolution. But since I moved the originals to the external hard drive there is no photo to back it up in lightroom anymore. So I went to locate the files by clicking on the  "?"  but since I renamed the file when I exported them, the original filename on the external hard drive is now different from the filename in the catalog. Is the only solution to locate the file one by one?  Is there any way I can do them all at once even though the original filename is different from the filename in my lightoom catalog? The original filename is still listed in the metadata, but since the originals are missing it can't change it back. 

View 7 Replies View Related

AutoCAD Inventor :: Change User Altered Volume Back To Original

Aug 19, 2012

I recently change the volume of a part thinking that it would change the actually size of it. It didn't effect the size at all and now I don't know what the actual volume of the part is anymore. How do I find out the part's actual volume?

View 3 Replies View Related

CorelDRAW X3 :: Workspace On Startup Reverts Back To Default

Jul 28, 2013

I've created my own workspace and saved it. When I shut down coreldraw and it reverts back to default and I have to manually set it back to use the one I saved.

View 2 Replies View Related

Photoshop :: 15 Moves In Crop Mode Can't Get Original File Back

Nov 22, 2012

I have made 15 moves in crop mode ( photoshop ) and i can't get original file back, how can i get back from crop mode.

View 5 Replies View Related

AutoCAD Inventor :: Project Geometry - How To Save New Hole Back To Original Solid

Jun 6, 2012

I used "project geometry" in an assembly to locate and place a hole from one part to another. How do I save the new hole back to the original solid?

View 5 Replies View Related

Lightroom :: Correcting Imported File Names (way To Bulk Rename Back To Original File Names)

Dec 18, 2011

I accidentally included a file rename when I just imported a batch of several hundred pictures. I violated a rule that I teach my own Lightroom students, and that is to look carefully at the import panel choices before proceeding.
 
How can I correct this so that the files are named as they originally were? I know how to easily fix the filenames in Windows (using a tool called BulkRename, for example), but then I'd have to "find" each image one-by-one and correctly point to the renamed version. I tried selecting all the images and then using F2 to rename, but none of the templates allow deleting a portion of the filename.
 
P.S. Here is an example of what I mean:
 
ON CARD:
IMG_0001.NEF
...
IMG_0300.NEF
 
WHAT I RENAMED TO ACCIDENTALLY:

IMG_0001 {shot by John Doe}.NEF
...
IMG_0300 {shot by John Doe}.NEF

View 10 Replies View Related

AutoCAD Inventor :: CC Parts Saved As Custom Not Updating Thumbnails?

Mar 26, 2013

When inserting a Content Center part into an assembly as a custom part instead of as a standard one, then opening and modifying the part, the thumbnail for the new file is not updating to show the modifications.  In this particular instance: a pipe blind flange with an off-center hole drilled through the face.  The thumbnail still shows as the original (and fairly pixelated) CC blind flange. forcing the thumbnail to update?

View 4 Replies View Related

AutoCAD LT :: Modify Border Offset Factor From Default Of 1.5 / Factor Reverts Back To 1.0

Feb 6, 2006

When using mtext and a background mask and try to modify the border offset factor from the default of 1.5 , the factor reverts back to 1.0. If I type in 1.25 or 1.75, it will not save it and revert to 1.0. If I put in a larger number like 2.0 or 3.0, that factor will be retained.

View 4 Replies View Related

AutoCad :: How To Change All Back To Original

Mar 7, 2012

I encounter a problem, that i mistakenly change one block in a drawing(which i dont remember now) but it effects all the drawings which are using the same block and changed all of them.

Is it possible to change it all back to original. I dont remember how i did it in first place.

View 1 Replies View Related

AutoCAD Civil 3D :: Xref Layer Color (Back To Original)

May 24, 2013

Is there a way to revert back to the original colors of an xref besides having to reattach the xref and purging the DWG.

I always change the colors of the projects Existing site/utilty XREF to color 252 to shade it back to have the proposed show up darker. But I try to select all layers to change the colors back to what they were before and the box to set color by layer is not available.

View 5 Replies View Related

AutoCAD Civil 3D :: New Layer Defaults Back To Original Color

May 15, 2012

Every time I create a new layer, name it, asign a color, linetype, etc...it defaults back to the original color, making me set it twice.  Am I missing a setting somewhere? 

View 2 Replies View Related

AutoCAD Inventor :: Later Version Of This File Has Been Saved / Message

Nov 7, 2011

One of our users, lets call him USER1, has recently received the following message when attempting to save an assembly:

"A later version of this file has been saved by USER1.  Saving the file would overwrite changes which is not allowed.  If you wish to preserve your changes, use the Save Copy As command."

To get to this error message, our user opens an IDW, then the IAM linked to that drawing. Changes made in the IAM are changing bolt lengths, adding fasteners from content center, things like that.  After saving inside the IAM this message appears.   There are multiple users on our network; but only this user is working the assembly in question when the message appears?

what makes this message appear, and how it can be avoided? 

View 1 Replies View Related

AutoCAD Inventor :: File Being Saved In Library Folder

Apr 11, 2011

I managed to change a setting to where my files are being saved in a library folder and I can't edit them. I don't wish to continue with this nonsense. I want to be able to edit the files. I am not using a vault but still get a message that the file I am trying to open is not signed out to me. How did I manage to mess my settings up this badly. I don't remember changing any of my settings.

View 7 Replies View Related

AutoCAD Inventor :: Recovering IDW Back Up File

May 15, 2012

I was working on my .idw and my autodesk inventor 2012 fatal errored on me. Well when I re-opened the program and drawing all my work was gone. Does inventor have a back up file like autocad. I know autocad had 2 back up files (.sv$ and .bak). Does inventor have anything like that?

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved