AutoCAD .NET :: Merge Modules For Installer For RealDWG 2013 Application

Feb 20, 2013

In the process of cretaing an installer for a RealDWG  based web application(VS2010 web setup project). The intended target environments for now will be win server 2003 and win 7. They will be fairly clean in the sense that no other autodesk or realdwg based products are installed or is planned to be installed.

The tips and techniques chapter of the RealDWG documentation have a section of how to create an installer and it says that all merge modules from the Redistrib folder should be added to the installer.

However the Redistribution requirements chapter mentions that for Shapemager functionality either a couple of merge modules should be included (for read/write support) or a couple of other merge modules should be included(read only support).

I've tried to only include the mergemodules that are listed as required but that did not work when I tried to run the deplyed app. (acdbmgd.dll missed several dependencies to other dll's that were not listed as required). When trying to include everything I get errors when doing a validation of the msi in Orca(probably originating from the shapemanager mergemodules).

View 1 Replies


ADVERTISEMENT

AutoCAD .NET :: Customization Using RealDWG

Nov 13, 2013

We people are doing the Autocad CAD customization using COM & .NET API.

Now I have heard that we can read or write thedwg file using realdwg toolkit without installing AuotCAD on my machine so it is beneficial that we can  do without AutoCAD.

Rather than this advantage, how it can be usefult to our team if our organization will but it ?

View 2 Replies View Related

AutoCAD .NET :: RealDWG Export File To PDF Or DWF?

Jun 24, 2011

Does RealDWG support output DWG file to PDF or DWF format? We can't find those method in the RealDWG toolkits.

View 6 Replies View Related

AutoCAD .NET :: XRef Listing With RealDWG

Aug 29, 2011

Is it possible to get a listing of all of the X-Refs contained in a particular document. I am attempting to do this with the following

db.ReadDwgFile(testFileName, FileOpenMode.OpenForReadAndWriteNoShare, true, null); using (var tx = db.TransactionManager.StartTransaction()) { var xrefGraph = db.GetHostDwgXrefGraph(true); for(int i = 0; i < xrefGraph.NumNodes; i++) { XrefGraphNode xgn = xrefGraph.GetXrefNode(i); Console.WriteLine(xgn.Name); } }

I know that this drawing has 3 attached X-Refs, but none are coming up in the node graph.

View 1 Replies View Related

AutoCAD .NET :: Access AEC Object Properties From RealDWG?

Sep 24, 2013

Is there a way to access AEC object (AEC_WALL etc.) properties from RealDWG? I am able to get the class name AecDbWall. And even the extents of the entity.There are some Aec*.dll files in the RealDWG folder but I am not sure what to use to  get the properties of Wall,window.I'm using visual C++. I have installed the object enablers of Architecture Structure Drawing, MEP, and also of Civil.

View 1 Replies View Related

AutoCAD .NET :: APPCRASH Error When Exiting RealDWG WinForms App

May 24, 2013

I have developed a C# winforms app with RealDWG SDK. When I close my form I get the "App has stopped working" error below. I've added in some Dispose methods to see if that was the issue, but I still get the error.

I added a dispose method to my HostApplication class and I called my Winform dispose method. I thought that the error was caused by unfinished RealDWG business at the Form Closing event.I am using RealDWG 2013, Visual Studio 2010 SP1, Windows 7 64-bit. I also have AutoCAD 2012 and 2013 installed.

I know that AutoCAD and RealDWG both use acdb19.dll. My app contains 6 classes with around 1000 lines of code on each class, so to paste in my code would be impossible. Here is my code structure.

I start by implementing a HostApplicationService Class (MyHost.cs)

Then I call my Windows Form. (MainForm.cs)

From my form I collect object data from a SqlDatabase.

Once the data is acquired, I send the data to a Class that handles my AutoCAD classes. (AutoCAD.cs)

In this class I create my RealDWG Database.

Next I pass the database to various IDisposable classes that perform AutoCAD actions.

I.E, CreateTitleBlock() CreateLayers(), DrawShape(); etc..

Everything works great, except when I go to close the app, I get the error. I dispose everything I can think of right before exiting.

I've tried:
this.Close();
Application.Exit();

How to dispose the app or close it cleanly?

Here is the error....
Problem signature:
Problem Event Name: APPCRASH
Application Name: LongBayRD.exe
Application Version: 1.0.0.0
[Code] .....

View 4 Replies View Related

AutoCAD 2013 :: Unable To Launch Application

Apr 19, 2013

Autocad will not start. No error return. Check in Task Manager ACAD.exe start and disappear immediately.

Tried:

Repair Application - same problem

Uninstall AutoCAD and delete registry and reinstall - same problem

Log in using other ID and repeat above still same problem

Uninstall, delete all AutoDesk folder in Program file and ProgramData and reinstall all AutoDesk product (AutoCAD and NavisWork)

Problem still same.,

No problem with NavisWork only AutoCAD

Check in Event Viewer:

Faulting application name: acad.exe, version: 25.0.114.0, time stamp: 0x503d96a9
Faulting module name: accore.dll, version: 19.0.114.0, time stamp: 0x503d97d9
Exception 0xc0000005
Fault offset: 0x000000000000fab0
Faulting process id: 0x144c
Faulting application start time: 0x01ce29119179dada
Faulting application path: C:\Program Files\Autodesk\AutoCAD 2013\acad.exe
Faulting module path: C:\Program Files\Autodesk\AutoCAD 2013\accore.dll
Report Id: cf370f5a-9504-11e2-a365-14feb5f140a6

System is Windows 7 Enterprise 64 bit

View 3 Replies View Related

AutoCAD 2013 :: Application Has Stopped Working

Jan 19, 2013

All of a sudden I got this window when starting AutoCAD:"AutoCAD Application has Stopped working..A problem caused the program to stop working correctly.Windows will close the program and notify you if a solution is available."

I'm using v2013 on a desktop with Windows 8..I have been using the program since I got this new system in November without a hitch On sunday I had a nasty virus -Today I had to uninstalled AutoCAD and re-installed it and it worked good.After I closed it and went to open the application again I got the MESSAGE again

View 9 Replies View Related

AutoCAD 2013 :: Application Defined Codes In Entities

Feb 14, 2013

I'm looking for a way to tag entities (for example arc) in a DXF with an numeric ID of my choosing. I've been trying to understand the DXF reference and find examples of how to do it, but there is not much information available. My interpretation of the standard is that I'm allowed to do this:

0
ARC
8
Layer1
10
-1.734315
20
-1.975000
40
0.300000
50
225.000027
51
270.000065
102
{MYAPPLICATION
2000
13
102
}

Where 2000 is my application defined code and 13 is my numeric ID value. Is this correct use of application defined codes?

View 4 Replies View Related

AutoCAD 2013 :: Application Plugins Folder Must Be A Bundle?

Mar 29, 2012

Concerning the folder "ApplicationPlugins" found in  C: Program File > Autodesk > ApplicationPlugins:

With AutoCAD 2012 I could dump my LISP routines that I use a lot and they would be auto-loaded in any drawing that I opened. I loved it....

With 2013, I try the same thing and it doesn't work. And from what I have been reading, I have to make a folder sturcture with the suffix ".bundle" and create an .xml file in order for these to run....

The ability of the  ApplicationPlugins folder from 2012 was awesome.Is there a way to make 2013 act like 2012 for this folder?I have checked my variables and they are set the same as 2012:

APPAUTOLOAD = 14

I have also ran the command APPAUTOLOADER and selected the "Reload" option and then Listed what applications it sees in the possible folders and it only recognizes folders that are .bundle folders AutoCAD Tips Blog

View 3 Replies View Related

AutoCAD Inventor :: Application Options Not Migrating To 2013

May 17, 2012

I've recently installed IV 2013 on my PC and when I attempt to import my 2011 Application Options over, they do no apply.

View 2 Replies View Related

AutoCAD 2013 :: External Application For Creating Section Box?

Oct 23, 2013

Is there any external application for creating a section box for autocad? If i use the live section it applies only to solids. Is there any option or an external add on so i can apply to points lines polylines civil 3d object and in general to every object? 

View 8 Replies View Related

AutoCAD 2013 :: XREF Layers - Any Way To Merge

Apr 26, 2013

When you XREF a drawing from another file that file is brought in along with all of its layers. Personally I do not need these layers for my access is there anyway I can combine all these to eliminate the large quantity of layers in my file? Say by layer merging. And if I do will this affect the ability of the file to revise itself?

Explanation: What I am doing is taking a bunch of engineering drawings, XREF them into my file, then creating seperate viewports for each drawing referenced in. But the key is I need these files to adjust automatically when the engineers make changes (This is done through the XREF command from what I gathered from one of my previous posts).

View 8 Replies View Related

AutoCAD 2013 :: 2014 Cannot Use Layer Merge?

May 20, 2013

In AutoCAD 2014 when I try to do a Layer Merge To.. in the Layers Properties - the 'Merge selected layer(s) to...' is greyed out and can not be selected when I right click after selecting the layer(s) I want to merge.

View 4 Replies View Related

AutoCAD Inventor :: Mechanical Desktop 2013 Error At The Start Of Application

Apr 27, 2013

When I start the subject application, I experience delay in opening the program & error as attached appars on sreen.

View 1 Replies View Related

AutoCAD Inventor :: View 2013 Error - Not A Valid Win32 Application

Sep 6, 2012

I'm trying to install the latest Inventor View on all of the computers at work and keep getting this error. The program installs fine, opens fine, but I can't set it as a default program to open .IDW, .IPT, and .IAM files. When I do I end up with the error "not a valid win32 application".

The computers are running the 32-bit version of XP, and Inventor View 2012 works fine on all of them (after doing the DtDv install trick).

Also, while we are talking about Inventor View, is there ANY reason at all why it isn't combined with TrueView??? Seems like such a hassle to have two programs doing basically the same thing, with TrueView being MUCH more functional.

View 4 Replies View Related

AutoCAD Civil 3D :: Merge 2012 Pipe Catalog Into 2013?

Sep 27, 2012

I have install Civil 3D 2013.

In my 2012 release I added several parts into the pipe catalog. I would like to merge those 2012 parts into my new 2013 pipe catalog.

View 8 Replies View Related

AutoCAD 2013 :: Wipeout Not Working If Line Merge Is Activated

Aug 19, 2013

ACAD 2012 Wipeouts will work although in the PDF To DWG.pc3 settings "line merge" is activated. But with ACAD 2013 this is not the case, why?

View 6 Replies View Related

AutoCAD 2013 :: The Application Has Failed To Start Because Its Side-by-side Configuration Is Incorrect

Jan 3, 2014

I downloaded AutoCAD on my windows 7 home premium,but when I click on the application it says "the application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tool for more detail." I tried repairing it but that doesn't work.

View 1 Replies View Related

AutoCAD 2013 :: Application Has Failed To Start Because Its Side-by-side Configuration Is Incorrect

Jan 3, 2014

I downloaded AutoCAD architecture 2014 on my windows 7 home premium, but when I click on the application it says "the application has failed to start because its side-by-side configuration is incorrect.see the application event log or use the command-line sxstrace.exe tool for more detail." I tried repairing it but that doesn't work.

View 2 Replies View Related

AutoCAD 2013 :: Application Has Failed To Start Because Its Side-by-side Configuration Is Incorrect

Nov 12, 2013

I have just updated to Windows 8.1,(32 bit) and when I try running Autocad 2013 I get this message: 

C:Program FilesAutodeskAutoCAD 2013acad.exe

The application has failed to start because its side-by-side configuration is incorrect. Please see the application event log or use the command-line sxstrace.exe tool for more detail.

what the "application event log" is or the "command-line sxstrace.exe". 

View 2 Replies View Related

AutoCAD .NET :: MAP End Of Loading AEC Modules?

Dec 6, 2013

AutoCAD MAP loads a some AEC modules when initialising.

I want to send my .NET Init message to the commandline after these AEC loading prompts

I tried waiting for Application.Idle(QuiescentState) without any luck. 

View 2 Replies View Related

AutoCAD 2013 :: Can't Start 2014 / Unable To Start Application (0xc000007b)

Apr 28, 2013

I got this error

Unable to start application (0xc000007b).

I already tried several fixes like:

1. reinstall all redist(x64 & x86).

2. reinstall .Net 4.0

3. Use CCleaner for Registry error.

4. chckdsk for error and fix.still error so I've gone through this.

5. I uninstall Autocad 2014 completely, uninstall it manually one by one,deleted left over folder of autodesk or similar software to it, deleted its registry keys.just like the instruction on how to remove autocad completely in autodesk, I just followed it all. [after Reboot]

6 I Re-install it and still the problem persist.

View 9 Replies View Related

Maya :: 2012 And 2013 Merge Vertex Tools Not Working?

Mar 5, 2013

I'm having problem with this tool in maya 2012 it doesn't connect or do the red mark between 2 vertices but in maya 2013 it does the red mark between them but doesn't connect

View 1 Replies View Related

Maya :: 2012 / 2013 Merge Vertex Tool Not Working?

Mar 5, 2013

I'm having problem with this tool in maya 2012 it doesn't connect or do the red mark between 2 vertices but in maya 2013 it does the red mark between them but doesn't connect

View 1 Replies View Related

Photoshop :: Corrupted CC Application When Desktop CC Shows Application As Up-to-date

Nov 24, 2013

How do I re-install a corrupted Photoshop CC app when the Desk Top CC shows the app as "up to date"?

View 2 Replies View Related

Photoshop Elements :: Some Of Application Components Are Missing From Application Directory

Sep 3, 2012

I bought Adobe Photoshop Elements 9 but get the following alert: "Some of the application components are missing from the Application directory, Please reinstall the application." Can it be reinstalled? It is not available under "History" and none of the available installs appear to be for Mac OS X (Version 10.7.4). S

View 2 Replies View Related

Photoshop Elements :: Some Of Application Components Are Missing From Application Director

Mar 19, 2014

I have PSE9 and a macbook pro 10.9.  I lost the original DVD that came with my purchase of PSE.  Some files must have gotten corrupted because I can't open the program without reintalling.  It says, "Some of the application components are missing from the application directory.  Please reinstall the application."  I have the serial number and all and I registered the product.  Is there somewhere I can download a new copy to install? 

View 7 Replies View Related

Photoshop Elements :: Application Components Are Missing From Application Directory

Nov 5, 2012

at photoshop cs6 extended downloaded in july, i now get the following message: "some of the application components are missing from the application directory. please reinstall the application."

View 2 Replies View Related

AutoCAD Civil 3D :: Export Geo Technical Modules Object

Aug 19, 2013

It seems that the object was created by the Geotechnical modules.  It cannot be exported to AutoCAD. I tried to use the command "Export or Explode", all object will be disappeared e.g. borehole onto the profile, geologies contour line onto the profile… after clicked the commands.

View 9 Replies View Related

AutoCAD 2010 :: There Are No Registered Modules To Edit Fields

Apr 16, 2013

I have a sheet set that i have been adding sheets to for a couple weeks and inserting fields to reference page numbers and titles. I installed service pak2 today and now all of a sudden I am not able to insert fields. I get an AutoCAD warning that says " there are no registered modules to edit fields or demand loading is currently disabled. I have not changed a single setting other then loading service pak. This sheet set is over a 150pgs right now.

View 1 Replies View Related







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