AutoCAD Inventor :: IDW File Name On Save

Jun 12, 2013

When using the default Standard.idw template, if you place a view of a file called for example 'AB1234.ipt' then save the IDW, it defaults the name of the IDW to AB1234.idw.

Someone has goosed up one of our IDW templates, and this no longer happens.  Irrespective of what I change the IDW part number or browser to now, it defaults the save name to Standard.idw.

View 3 Replies


ADVERTISEMENT

AutoCAD Inventor :: Disabling File Name Selection In File Save Dialog?

May 24, 2013

I'm using the file dialog snippet as the foundation for a save as dialog box for saving a new copy of my template assembly to a project folder. Is there a way to disable the ability to click on a file in the window which puts that filename in the input box? The assembly file name is standardized and pre-"calculated" by my code and its a decent hassle if you accidentally click another file because the user would either have to rewrite the file name by hand, or cancel out of the dialog box and re-navigate to the project folder.
 
Inventor 2013 SP 1.1

View 1 Replies View Related

AutoCAD Inventor :: Open File - Save File Automatically

Apr 29, 2013

if i need to rename  or change anything in the iproperties of ipt, im doing it from the vault.my problem is that, when i change something in iproperties of an ipt thru vault, i have to open the idw to update it.

as most of the iproperties in ipt shows in the idw.

its easy to change the properties in vault. but its deleting its purpose if i have to each idw to make sure i have the updated idw.is there a code where i can open all idw and save the same file and checking to the vault automatically?

View 9 Replies View Related

AutoCAD Inventor :: Save BOM As CSV File

Dec 3, 2010

I have an application that would export the BOM to a *.csv file format.... I used to save the information in exactly the same manor as viewed in Inventor. For some reason, my application is now saving the information all mixed up. If I am in Inventor and export it manually then open the *.csv file the information is exactly as I wanted it. Pragmatically, it jumbles up all of the information.... this is the code I have been using for quite some time.

Public Sub ExportBOM() ConfigurationLocation = "ExportBOM"
Dim oBOM As Inventor.BOM
oBOM = oAsmCompDef.BOM
oBOM.StructuredViewFirstLevelOnly = False
[Code] ..... 

how can i get this to mimic programmatically what is done when you do it manually? Oh.... running IV 2011.

View 1 Replies View Related

AutoCAD Inventor :: VBA Save IPT File As DWG?

Dec 15, 2013

I have created a part that is going to be laser cut. The part is, effectively, a 2d profile that has been extruded to the material thickness.

Is it possible, using a VBA macro, to automatically export this ipt file as a 2d AutoCAD dwg file?

View 1 Replies View Related

AutoCAD Inventor :: Unable To Save File Name

Aug 17, 2013

Have an easy file open and am trying to save a copy with a new name and Inventor either does nothing or crashes.  Original full path and file name contains 243 characters (counting from drive letter to extension)  New one will have 247 characters.

This is supposedly within the path/file name character limits for windows 7, which according to the ms website is 260 minus one for the null character at the end making it 259.  So I am over 10 characters shy of the limit dictated by the OS.

Is inventor placing a stricter limit on the number of characters in the full path/file name?  If so, why?

Obviously, working up the tree and adjusting upper level folder names is not an option as that would break every link in every assembly at that level or lower. 

View 8 Replies View Related

AutoCAD Inventor :: DWG Save As Config File

Nov 16, 2011

DWG configuration? I keep trying different configurations but none are acceptable to our quality department.

What I need is for dimensions to retain associativeness(not exploded), and for the dimensions to retain their fit (i.e. look like they do in the idw)

View 1 Replies View Related

AutoCAD Inventor :: Save As Thumbnail As File In Vba?

Oct 21, 2012

I need to save as thumbnails (like jpg or bmp or png file...?) in other directory in VBA. I seen lots of examples but in 32 bit with ThumbnailView companent.

I need to get this in Inventor VBA and 64 bit system and I do not want to install any other companent.

Using Inventor 2013 and Win 7 64 bit...

View 1 Replies View Related

AutoCAD Inventor :: IDW File - Save Copy As DWG?

Apr 1, 2011

I used to be able to save my .idw files as an autocad .dwg, then be able to open and edit them in autocard. Now it seems that I can only save as inventor dwg and I am unable to edit the drawing in autocad.

View 9 Replies View Related

AutoCAD Inventor :: Use ILogic To Do File Save As?

Dec 3, 2010

I would like to use iLogic to do a File Save As and have the dialog box open in a specified folder.  I have tried the code below but it doesn't work. 
 
oFileDlg.InitialDirectory = "J:" & strFolder & (".dwg")
oFileDlg.ShowSave()

View 2 Replies View Related

AutoCAD Inventor :: Save Flat File To Specified Directory?

Sep 23, 2011

I am trying to use this code to take the flat pattern and save it to a specified directory ("X:Burn Files" ) but I can't get the path to work. I can save the file just fine but not where I would like it to go. 

Public Sub WriteSheetMetalDWG()
    ' Get the active document.  This assumes it is a part document.
    Dim oDoc As PartDocument
    Set oDoc = ThisApplication.ActiveDocument
    Dim oCompDef As SheetMetalComponentDefinition

[code]...

View 1 Replies View Related

AutoCAD Inventor :: File Rename Error On Save

Nov 6, 2008

When i try to check in my files i get this error. "File rename error on save - Cannot create a file when that file already exists" .When i try to do a save i get this error

Problems encountered while saving the document.Could not rename new document version from

\Autovault2009VaultJWCRotary Screen36 X 48AssemblyDrumdrumMDC-0003-0001-SS304.newVer.ipt to \Autovault2009VaultJWCRotary Screen36 X 48AssemblyDrumdrumMDC-0003-0001-SS304.iptThe database in \Autovault2009VaultJWCRotary Screen36 X 48AssemblyDrumdrumMDC-0003-0001-SS304.ipt could not be saved

I am running inventor 2009 on a windows xp sp3, with a server running windows server 2003 sp2.SQL server 2005 with net.frameworks 2.0.50727 on server and client.

View 2 Replies View Related

AutoCAD Inventor :: ILogic Save File Crashes?

Sep 5, 2012

I seem to have my task accomplished, but Inventor crahes on me after it is done.

Here is how my iLogic works. 

' Deleting the suppressed parts from the assembly
Dim compDef as AssemblyComponentDefinition
compDef = ThisDoc.ComponentDefinition
Dim compOcc as ComponentDefinition
For Each compOcc in compDef
[Code] ........

Now as soon as the last line is executed, Inventor crashes.

But when I go to the save file part (C:MyPath), both the parts and assembly files are saved and if I open it, they work just fine.

I just can't get inventor to stop crashing.

View 7 Replies View Related

AutoCAD Inventor :: Save And Import Sketches From One File To Another?

May 28, 2004

I just wanted to know if you could make sketches in one part or file, somehow save it with a name, then open a new or existing part file and import that saved sketch. Is there a way to do this? Also, can you make blocks, as we could in AutoCAD, in Inventor?

View 5 Replies View Related

AutoCAD Inventor :: Unable To Save Step File

Sep 12, 2013

 It only happens with this one file so far.  It is a STEP file.  I open it in Inventor and then when I hit save it gives me an error. The system cannot find the path specified.

The database in C:Users
stalkerDocumentsInventorDesktopAssetCreation2Imported ComponentsC731222M-U2 68514423656.ipt could not be saved.The system cannot find the path specified.The database in C:Users stalkerDocumentsInventorDesktopAssetCreation2Imported ComponentsC731222M-U2 11505_3.ipt could not be saved.The system cannot find the path specified. 

I have tried to save it on two different computers with two different projects and I get the same error. I have never ran into this problem before and I open and save STEP files often.

View 9 Replies View Related

AutoCAD Inventor :: Save Copy As DXF Create File That Is Almost 50x Larger Than IDW

Apr 5, 2013

I have re-installed APDS Ultimate 2013 onto a new computer and am having some issues setting up my styles and etc...for the most part I have been working on it as I go with no issues...but I can't remember how I set up my export to dxf settings before. I think I just used the default settings, I exported to dxf from the idw environment by saving copy as and selecting dxf from drop down menu and selecting something like AutoCAD 2004. This has worked before and still does now, but the problem is the dxf's that are exported are huge. The drawing is of a single tiny part with basic geometry. The picture below shows the size difference between the files.

how I can make it a normal size, I don't really care about the size of the dxf except for the fact that I can't email it because we have a limit of 10MB.

Inventor Professional 2014-Update 2 - AutoCAD Electrical 2014
Win7-x64 | ASUS P8Z77-V | i7 3770 -3.4 GHz | 32GB RAM |
240GB SSD | nVidia GTX 670 4GB - 320.49

View 9 Replies View Related

AutoCAD Inventor :: Open Word File And Save As From ILogic / VBA?

Nov 14, 2013

We have a word file that we use a lot for our drawings.  There is an empty file that we open and then save the file into the same directory as the drawing.

I am trying to setup some code that will open the empty Word File, and then bring up the Word Save As dialog box with the correct directory and file name already completed.  The correct directory and File name will be determined by the Drawing Code.

I have been able to open the Empty Word Document from iLogic with the following
 
'CRS Template Path & File NameoCRSTemplate = "\WWSERVERDisplaysA-Z Stand PartsCRS-Template.doc" 'Publish document. ThisDoc.Launch(oCRSTemplate)
 
I have been able to Open the Empty Word File from VBA and then bring up the Word Save As Dialog Box but I cannot work out how to define the initial directory or the initial file name from Inventor.

This is the VBA Code I have been using top open the Empty Word File and Show the Word Save As Dialog Box:

Public Sub OpenCRSDoc1()
'Don't Forget to Add the Word Object Library in the Tools - References
' Call SetCRSDetails

[Code].....

If you try to use the With Command for the FilePicker it will just open the Word Document and NOT the Save As Dialog Box!!!

Example of the With Tried

With FilePicker
.InitialDirectory = "Z:"
.DialogTitle = "Hello"
.Show
End With

How to open a Word Document from either iLogic or VBA (VBA Preferred) and then open the Word Save As Dilog Box and define the Initial Directory and Filename?

View 1 Replies View Related

AutoCAD Inventor :: How To Save IDW With Multiple Sheets Into 1 Single File

Dec 14, 2011

How to save IDW's with multiple sheets in to 1 single CAD file

I have IDW's whith lots of sheets and when saved to cad, I got multiple files and I always end up doing copy paste to create a single file

View 5 Replies View Related

AutoCAD Inventor :: How To Set Default IGES File Save As Options

Apr 18, 2011

My company outputs IGES files and we always use the settings "Surfaces" and "144-Trimmed", however, the default for Sufrace Type is "143-Bounded" so we have to open up the options dialog box and change to "144-Trimmed" every time.  How can I set Inventor's Default to "144-Trimmed" so I never have to mess with it again?

View 6 Replies View Related

AutoCAD Inventor :: Unable To Save Changes In DWG To Design Data File

Oct 11, 2012

I am having problems with an error message relating to what appears to be a corrupted design data file. I am unable to save changes in my dwg to my design data file.  I get this message:

Style library (C:UsersPublicDocumentsAutodeskInventor 2011Design Data) cannot be saved because it is damaged.If I attempt to copy a view in a dwg to another sheet or move it using the browser, I get the following error:

Paste View: problems encountered while executing this command.
     Invalid XML value for 'SubstituteDisplayUnit'. Expected 'bool' received '44' in file:///C:/Users/Public/Documents/Autodesk/Inventor%202011/Design%20Data/PartsList.xml.
       Invalid XML value for 'SubstituteFractionalFormat'. Expected 'bool' received '255' in file:///C:/Users/Public/Documents/Autodesk/Inventor%202011/Design%20Data/PartsList.xml.

I have also noticed that if I multi select components with ipropWiz5 and attempt to change the part name - it fails.I have tried reinstall in Inventor, ipropWiz5, etc. But to no avail.

View 9 Replies View Related

AutoCAD Inventor :: Opening Model With ILogic And Save As STP File?

Jul 23, 2012

I have an ilogic rule created to do a save as .dxf and .pdf from the .idw file.  It will then open the .ipt file without any issues.  The problem I am having is that I also want it to do a save as .stp of the model after it opens the model.  I get the following error.

Error in rule: Save As DXF PDF and open, in document: Save As DXF PDF and open.iLogicVb

Unspecified error (Exception from HRESULT: 0x80004005 (E_FAIL))

Do I need to add something to the code?

Here is the code I have written.
 
strFolder="C:Vault_WorkspaceSave As"&iProperties.Value("Project", "Part Number")
ThisDoc.Document.SaveAs(strFolder&"_Rev"&iProperties.Value("Project", "Revision Number")&(".dxf") , True)
ThisDoc.Document.SaveAs(strFolder&"_Rev"&iProperties.Value("Project", "Revision Number")&(".pdf") , True)
doc=ThisDoc.PathAndFileName(False)&".ipt"ThisDoc.Launch(doc)
strFolder="C:Vault_WorkspaceSave As"&iProperties.Value("Project", "Part Number")
ThisDoc.Document.SaveAs(strFolder&"_Rev"&iProperties.Value("Project", "Revision Number")&(".stp") , True)
MessageBox.Show("STEP Created", "File Save")

View 1 Replies View Related

AutoCAD Inventor :: File Save As Dialog Won't Launch Through Command Manager

Feb 15, 2013

I am unable to get this code to launch the File Save As Command. I Think I have the sytax correct, because if I Replace "AppFileSaveAsCmd" with a different command name (i.e. "AppFileNewCmd") it works as expected. I have tried this with "AppFileSaveCmd" and "AppFileSaveCopyAsCmd" and both have also failed. It seems any kind of save command wont work...  I am trying to creat a rule that will fire on "New Document" iTrigger that will  Force a user to save the newly created assembly document in preperation for further iLogic rules that depent on the assembly Filename and path. Maybe there I am not telling it What file to Save? I have pasted the code below..

Format:HTML Format Version:1.0 StartHTML:     165 EndHTML:    3048 StartFragment:     314 EndFragment:    3016 StartSelection:     314 EndSelection:     314
SyntaxEditor Code Snippet

[Code]....

View 8 Replies View Related

AutoCAD Inventor :: Why Can’t Fusion Save Imported STP File As A Part

Jun 4, 2012

Why can’t Inventor Fusion save an imported STP file as a Inventor part?

View 1 Replies View Related

AutoCAD 2010 :: 2012 Crashing Whenever File Open / Save Or Save As Selected

Jun 27, 2013

I have the student version of AutoCAD 2012 on an HP laptop with Windows 7 Home Premium OS.  I originally installed AutoCAD in June of 2012.  It worked fine for 9 or 10 months but now whenever I select File/Open, File/Save, or File/Save As, AutoCAD stops responding and the spinning blue donut appears.  AutoCAD never comes back and I have to close it from Task Manager.  I uninstalled AutoCAD and reinstalled it, and the process went smoothly.  However I still have exactly the same problem with the File operations.  I apply Windows updates, but other than that have not made any changes to the software on the laptop.  AutoCAD works fine for everything except the File operations.  I am able to save with CTL/S and am able to open AutoCAD files from File Manager. 

View 3 Replies View Related

AutoCAD Inventor :: Can't Save / Save As Or Any Other Variation Of Save

Dec 31, 2013

I am having a catastrophic error in Inventor 2013.

When I attempt to save a drawing I have completed, I cannot save!

Can't save, save as or any other variation of save.

This is my issue every time I click save.

View 2 Replies View Related

AutoCAD 2010 :: Unable To Save File - Losing Original File Afterwards

Feb 12, 2013

I found this error a bit strange, my colleague it trying to save a file and this error keeps on coming out (see attachments). When we try to save it, it only saves as a temp file. When we try to open up the temp file and try to save it, it still doesn't allow us to do. Also, when we cancel the save, the original file will be gone and he will lost all of his data. Below are the specs of the computer and version of the AutoCAD.

Computer: DELL Precision T5500

OS: Windows 7 Ult

AutoCAD Version: 2011

Also, we're using ProSteel Series 3 as well. We tried saving the file using ProSteel and just AutoCAD but it didn't do the trick. I've tried some options (listed below) that might get it to work but still no luck.

1. Restart the computer.

2. Repair / Reinstall AutoCAD.

3. Give permission to the folder (read from the forum).

View 4 Replies View Related

AutoCAD Civil 3D :: Multithreaded File Open File Save?

Jul 8, 2013

Civil 3D 2013.One of the problems my team has is that we have a number of remote offices that all work on the same drawings. To ensure integrity of the drawings, we use a Wide Area file replication and locking service to ensure the files do not become out of sync and corrupted between offices.

AutoDesk seems to open and save files and their subordinate xrefs serially in a single thread instead of in a multi-threaded manner. Because of this there is a Huge time impact on just opening and saving files at remote sites as a result of Civil 3D having to wait for the home office file lock check on each and every file before opening the next file.

We have 100Mbit down / 20Mbit up transmission links at both sites dedicated to the file replication, with Gbit backbone in both offices.

note that the remote site has a full copy of all files in its replicated share. These local files are what Civil 3D is opening. No Files are being transferred during file open unless a remote change has just occurred (proven through replication logs).

When the drawing file is opened for editing, a file lock check is performed and Windows waits for the response to ensure it can be opened for editing before telling Civil 3D. When Civil 3D has this file open, it has a list of all the xrefs for this file. Civil 3D then seems to open each file in sequence.

This is a problem when a large latency is introduced through our 3rd party Wide area file system by a remote site file lock check.

This is not AutoDesk's fault but the compounding of the two system's operational behaviours, causing a Very long wait on file open, Save, PaperSpace operations (30 minutes for large drawings).

I would like to see a multithreaded (threadpool) file open occur against the entire list of xrefs (during save as well). Then recursively executed for all subordinate xrefs of those files until the operation is complete.

As long as a file list is maintained during the operation and updated as each file operation completes (which obviously it is) in the primary thread, this should not cause any problem. All dependancies can be opened in sequence once the initial file operations are complete and when a particular file in the list is required but not open yet, it's priority can be raised in the threadpool.

View 1 Replies View Related

Photoshop Elements :: Won't Save TIFF File Over Original / But Brings Up Save As Window

Mar 20, 2014

URL....I am using PSE 12 as a photo editor for Aperture 3.5.1 and the photo is duplicated (as a tiff) in Aperture and PSE editor opens with the image.  When I close the file and say to save the file it brings up the save as window.
 
I tell PSE 12 to "on first save -- save over current file" it now brings up the "save as" window and won't save over the file (changes the file type from .tiff to .tif)

View 2 Replies View Related

Photoshop Elements :: Save And Save As No Longer Show File Size?

Jan 23, 2013

I have Photoshop CS6 and Elements Premiere 11 and both were showing estimated file sizes properly up until a couple of weeks ago, and both stopped at the same time.  Using Image, Mode I have verified on both that the images I am trying to save are 8 bit and not 16 bit images.  I am on Window 7, 64bit.

View 9 Replies View Related

Photoshop :: Unable To Save To Jpeg File From Save As Menu

Jun 14, 2012

From the start, I wasn't able to save to jpeg without getting a dcm extension (no jpg extension). However, if I saved to Multi-picture Format, I would get the familiar .jpg and everything worked fine for a while. This morning I cannot find a file format in "save as" that results in the .jpg file extension.

View 2 Replies View Related

Photoshop :: Why Can't Save Or Even Save As Projects To PSD / JPEG File

Apr 29, 2012

when im about to save my file *project* nothings happen

View 2 Replies View Related







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