AutoCAD .NET :: ReadDWGFile Causes Warning - Cannot Find DLL Or Other File
Aug 28, 2013
I have no clue what this error/warning message means or why I am receiving.
c:program filesautodeskautocad mechanical 2012acadmamg3dim.arx cannot find a dll or other file that it needs.
View 3 Replies
ADVERTISEMENT
Aug 12, 2011
Create a dwg with a xref, set VISRETAIN to 1. Freeze some layer and change color for some layer of the xref. Save the file.Next time when you open the file those layers should stay at the same status as you saved.
Now try to open the dwg with DATABASE.ReadDwgFile(). Make some change if you want then save the dwg with DATABASE.SaveAs(). Open the dwg in ACAD and see if those layer stay at the same status as you saved.
On my computer I can see the DATABASE.VISRETAIN property is TRUE after ReadDwgFile(), but xref status can't be retained after the dwg been saved by DATABASE.SaveAs().
View 5 Replies
View Related
Dec 4, 2013
I want to handle multiple DWG files containing MagiCAD proxy elements.
An easy and very fast method is to access the files using the ReadDwgFile
Database db = new Database(false, true);using (db){
db.ReadDwgFile(dwgfile.FullName,FileOpenMode.OpenForReadAndAllShare,true,null); // open the dwg file
And then save the files using:
db.RetainOriginalThumbnailBitmap = true; // retains thumbnail previw imagedb.SaveAs(dwgfile.FullName, true, DwgVersion.AC1024, null);
However, when using this method, the display of MagiCAD proxy entities are not saved. The DWG fil still contains the proxy entities, it's just the AutoCAD representation of the elements that have been altered.
Is there a method to handle 3rd party applications when using the .ReadDwgFile?
View 4 Replies
View Related
Dec 31, 2012
While opening the autocad file it is showng some warning & I dont know what is this.
View 2 Replies
View Related
May 10, 2012
We modeled parts in inches. We save as copy to an .STL file to get SLA prototypes made. The parts came back 2.54 times bigger than needed. Reason is the default setting for saving as .STL files is Centimeters.... Not sure why Autodesk did this....but yes I understand it's not their fault, we should have checked under options and changed it to inches.....we just assumed that you model in inches, it would save as in inches....See what happens when you assume....
View 5 Replies
View Related
Jan 24, 2012
When I enter a Run File Name in the "Create Tube & Pipe Run dialog box I get the message "The path is too long. Try a shorter name." The name I entered is "Kappa 55 Suction Line", I also tried the Run File Name of "1" as a test and get the same warning message "The path is too long. Try a shorter name."
View 3 Replies
View Related
Nov 21, 2011
I am copying objects to a new database and and cloning as an Entity type succesfully for all objects.When I save the database to a new file I get the attached error
'Warning: An error occurred during save....'
I have isolated this to Polylines and have tried to Process as Type PolyLine but still get the error.Here is the code I use for the polyline.(My entity processing code is identical except for object type).
Dim MyPolyLine As DatabaseServices.Polyline MyPolyLine = CType(myObjID.GetObject(DatabaseServices.OpenMode.ForRead), _ Database Services.Polyline)Dim NewEntity As DatabaseServices.Polyline = CType(MyPolyLine.Clone, _ DatabaseServices.Polyline)NewEntity. Set Database Defaults(NewDB) NewBTR.AppendEntity(NewEntity)NewTrans.AddNewlyCreatedDBObject(NewEntity, True)NewEntity.Layer = MyPolyLine.Layer NewEntity.Linetype = "ByLayer"NewEntity.Material = "ByLayer"
View 2 Replies
View Related
Oct 11, 2011
For the past couple of months we have noticed we are loosing files on the save command with no warning or notice. When the drawing is saved and then closed we discover that occasionally the file did not save and the original version of the file is lost. Sometimes the original version gets saved as a bak file but not always. No warning message shows up to inform that the command was not completed correctly, it looks like the save took place.
Recently we switched to Windows 7, 64 bit machines. All three machines this has occured on match and are saving back to 2010 version. One of the machines is running a trial version of Architecture 2011, the other two are running network licenses of Architecture 2012 with Service Pack 1. The files being lost are all located on a server in the same folder structure, not in the same folder. That server is new and has some sort of mirroring set up to image files to multiple locations? This phenomenon has only been noticed to occur on saving a file from Architecture. We do save other file types to the same folders and have not noticed any going missing. To my knowlege the files never show back up (one of our IT staff suggested the mirroring might be causing a delay in the file showing up in the folder.)
View 4 Replies
View Related
Oct 9, 2013
with saving on Photoshop CC? Quite often it has happened to me that I will hit Command+S, but I won't see the saving bar at the bottom of the document, and if I then close the document it won't prompt me to save, but if I close the file it won't be saved.
If before I close the file I go to the File menu, the "Save" option is grayed out (as if I had just saved), but the file is not saved. If I close the file, I loose all my work
View 6 Replies
View Related
Apr 5, 2012
Image (Line drawing). Save for Web (*gif). Receive following warning: "Some names of the files being saved will be truncated to 31 characters for compatibility with Macintosh browsers. To change your filename compatibility options, click the Optimize pop-up menu, choose Output Settings, and select Saving Files."
I could not find the Optimize pop-up menu. Therefore, I did not do this step.After save, I simply went to the appropriate folder and changed the file name to what I originally wanted (i.e., essentially correcting the truncation).
View 5 Replies
View Related
Nov 9, 2011
I'm trying to update a part with different colors for various features. My color styles are not available in this file. I can export them from another file, then use the import function to bring it over, but there has to be a way to force this file to find the entire "default" color file.
View 6 Replies
View Related
Dec 6, 2012
I'm linking an excel file to an .ipt file with iLogic code determining if the Material type is a certian value it will find the correct material thickness. These file work great when working on them thru Vault but when I "Save As Template" and create this file where our other template files are located (not Vault) this fuction does not work. I have realized that I had to place the a copy of the excel file in the same file folder as the template ipt, but even this does not fix the issue.
I recieve this error:
Error in rule: Material, in document: Part6
'MWW Materials (Inventor).xlsx' could not be found. Check the spelling of the file name, and verify that the file location is correct.
If you are trying to open the file from your list of most recently used files, make sure that the file has not been renamed, moved, or deleted.
It seems completly countintutive that just saving the file as a template file would cause this not to work when all files that are required are located in the same file folder. Maybe I need a reference to the excel document within the iLogic code.
View 3 Replies
View Related
Oct 2, 2012
I want to open a file in a fold with hundreds files there, every time when I click the open file, the select file box only show the top 10 files there. How to set to see the previous file which I opened before.
View 4 Replies
View Related
May 8, 2012
So i turned off the "command line completion" settings. However, now I have to type in the full command in order to run it. I found that there should be an "acad.pgp" file somewhere in the support paths that will allow me to define command aliases. So i did a complete search of my C: drive for "*.pgp" and the search came up empty; I tried a few different ways and places (trying narrow it down) but couldn't find ANY of these files.
I have the student version of 2012. Does this have something to do with it? I wouldn't think it should because of what it says on the education site: "Important Note :The Autodesk Student Version software incorporates all the functionality of our professional licenses, but includes a print banner making the software inappropriate for professional, commercial, or for-profit purposes."
Win 7 64bit
Intel i7 2.30GHz
8Gb DDR3
View 6 Replies
View Related
Sep 25, 2012
when i add a custom template file location under options>files>template settings>drawing template file location>default template file name for QNEW i i get the error message c:program filesautodeskautocad mechanical 2012acadmamg3dim.arx cannot find a dll or other file that it needs. if i remove my custom template file location and leave it blank, i get no error. its the same thing for the drawing template file location, if i change the default file location to another path, i get a different dll error message when launching cad.
View 9 Replies
View Related
Jun 18, 2012
I am receiving this error whether I am attempting to view a drawing file via the network, via a lotus notes database, or loaded locally.:
"Cannot find the specified drawing file. Please verify that the file exist"
The Autodesk product I am using is Autodesk 2012 LT (trial)
The operating system is Widows 7 (64 bit)
I have had the same error for multiple Autodesk readers aswell on this same PC including:
Design Review 2013, 2012, 2011
True view 2013, 2012
I have administrative rights to the profile in question and I have also attempted to use a separate profile but received the same results. All attempts to manually set the file association have liekwise failed. the program will initialize, but the error message returns with no ability to veiw the drawing file(s).
I have also removed/uninstalled all of the above mentioned programs via Autodesk instructions/procedures for proper removal of folders/subfolders/registry entries (HKey local machine and current user) as well as stoping any autodesk program running in task manager.
My next step is to re-image the machine to make the file association stick to an autocad program.
View 6 Replies
View Related
Jan 24, 2012
I am using windows 7 on my macbook pro. I am using autoCAD 2010. I can create and save files, however I can't open them. When trying to open a file, a message pops up saying "Cannot find the specified drawing file. Please verify that the network drive is available and the file exists."
View 4 Replies
View Related
Mar 21, 2012
I'm using W7 and ACAD 2010. I can't find my cui menu file.
View 4 Replies
View Related
Oct 13, 2013
How do I reconnect a missing file when it doesn't show on the right hand side?
View 2 Replies
View Related
Jul 27, 2010
When I try and open a file from the network that another user already has open, I receive the following message:
"Cannot find the specified drawing file. Please verify that the network drive is available and the file exists".
This happens when using Novell Netware. Is there a resolution?
View 2 Replies
View Related
Sep 18, 2012
Using Inventors VBA, is it possible to get the sheet size of a idw drawing file (E.g. A0, A1, A2 etc)
View 1 Replies
View Related
Aug 8, 2012
i have lost a file and cannot find it anywhere on c drive. where can it be stored.?
View 1 Replies
View Related
Jul 9, 2013
I need to change the shortcut commands but cannot find the file or how to do it in AutoCAD LT 2012. I had to reinstall due to a virus in my computer and I cannot remember how to do this, it has been too long.
View 2 Replies
View Related
Jan 6, 2014
I am working on a project in Inventor. Long story short, the file destinations got messed up. I was in the process of getting them all in the same folder so that I could organize them, but now the main project won't open. I'm am not the most Inventor-savvy. how to fix it.
The message that pops up is "Cannot find applets configuration file"
View 3 Replies
View Related
Dec 19, 2013
is there a way of find and replace tab names in one drawing file? one file with six tabs named 001 rev A, 002 rev A etc. i would like to change all the "rev A" to "rev 0" with out going into each tab seperatly and changing them.
View 2 Replies
View Related
Oct 1, 2013
I am using Inventor 2011. When I display dialog with options for export to PDF in Inventor, all options in this dialog I can set programatically except one - something like Print excluded sheets(I translate it to English from Czech version). This option is accessible when PrintAllSheets or PrintSheetRange option is set.
I can't find it in option values list for PDF in help file. Is it only undocumented or is it not accesible programatically?
View 3 Replies
View Related
Nov 7, 2012
I have created a script file to change some drawing settings. If it's possible to create a button to find the script file and run it. I am running it now by typing SCR then searching for it and selecting open.
I would like to give it to others to use and thought if I can create a one button pick it would be easier for others.
View 2 Replies
View Related
Apr 4, 2011
I have unchecked resolve file references, etc, and still basically spends 5 minutes looking for files i told it not to look for. Why doesnt it just open the assembly or drawing, without waiting for ever?
View 3 Replies
View Related
Dec 17, 2012
Im having a little trouble of late understanding how to undertake an action/ command if nil
what i do know id the following:
(setq TESTvar(findfile "acad.lsp"))(alert TESTvar)
this gives me the path of the acad.lsp, that is provided it actually exists, however because the acad.lsp is not compulsory it may indeed not exist meaning that the command prompt would return the NIL value instead of the pathname.
based upon that I would like to create a new acad.lsp file if not found by autocad.
View 3 Replies
View Related
Dec 14, 2011
Land Desktop 2009 Civil 3D Companion
When I issue the Wblock Command I can not find the Dialog box to select objects and file location... This happens in the Layer Dialog when I try to change the color of a layer, the Color Dialog box can not be found. When I use the Block command the dialog box pops up, so I can see it.
fildia>1
cmddia>1
attdia>0
View 9 Replies
View Related
Dec 11, 2012
how I could open an external .CSV file which is assigned to a variable called INFOFILE and scan line by line and replace each instance of the string "WIDGETTE" with the string "WIDGET"? I assume the function vl-string-subst woud be involved.
View 9 Replies
View Related