I am writing an NXOpen Application using C++. The purpose of the application is to add seed part to components which are present in teamcenter but are not yet present in NX. That means there will be item id in teamcenter but it will not have any NXdataset/UG Master data. The NXOpen application...
I am working on an NXOpen application(C++) to copy all the parts from a subassy & paste those parts in another sub assy. Both the subassys are under the same root component. the requirement is such that when the parts are copy pasted from one subassy to another, parts should get pasted exactly...
Hi Can any one tell me how to debus NXOpen C++ application. I am using VS2008 for NX7.5 The information given in NXOpen Help file is not enough. First I am unable to find option to run an external program in Visual studio project properties. When I am trying to attach an exiting process to VS...
I have written a journal which is performing a set of actions on each child part of a root component. But if the user doesnt have write access to child part, it prompts a warning message. Although my journal works perfectly fine even on these parts, the problem is if the root assembly is have...
I want to select only the bodies of the individual components from a component assembly so that those bodies can be moved to a particular layer. I am writing an NXOpen application using C++ language for the same. Can anyone plz guide me how to approach. I am trying to use...
I want to write an NXOpen C++ application to search a set of parts in Teamcenter & open in NX automatically. Basically the NXOpen application shuld search the parts first in Teamcenter & if available should open it in NX.
Any help would be appreciated
I am working on a 3D model. I want to import a part from Operating system in workPart. After importing, I want to move all the objects of the imported part to a particular layer in workPart. I am using C++ for NXOpen application development .Can anyone plz suggest an approach.
I am trying to use RedisplayObject() method after setting the layers for NX7.5. Although I am able to build my NXOpen C++ application but layers are not getting updated in the view.
Can someone tell me the fix. Or can someone share the source code for RedisplayObject() method.
Hi, Can someone plz provide some help:
M unable to get DATUM_CSYS components in OPEN C++. Basically I want to get Cartesian coordinate sysytem,point, planes & axes related to DATUM CSYS.
Hi, I want to move DATUM coordinates to a specified layer. Below is the journal which I am getting on recording:
Session::UndoMarkId markId1;
markId1 = theSession->SetUndoMark(Session::MarkVisibilityVisible, "Edit Object Display");
DisplayModification *displayModification1...
Hi,
I want to move all the points to a layer:
When I try to record a journal for moving a single point, I am getting the below shown journal:
Session::UndoMarkId markId1;
markId1 = theSession->SetUndoMark(Session::MarkVisibilityVisible, "Edit Object Display");
DisplayModification...
I have developed an application using VS2008 for NX7.5. The application has been developed using C++. When I try to run the dll file in my computer it works perfectly fine. But when I try to run the application in other computers, I get an error message "Failed to load image-see log file for...
Can someone plz tell me whey the loop in the below code is not getting terminated? Its going in an infinite loop.
Session *theSession = Session::GetSession();
Part *workPart(theSession->Parts()->Work());
UI *theUI = UI::GetUI();
ListingWindow *list=theSession->ListingWindow();
NXObject...
Hi,
I have written a java application using java in Eclipse. When I am trying to sign this application using SignJar Batch file in commandpromt, I am getting the error shown in the attached file.
Can someone plz help me getting rid of it...
Hi,
I have developed a small NX open java journal using eclipse. When I try to tun the journal in Nx through File->Execute->NXOpen-> .class file, it is giving me an error "No author license is available to be able to run this java class file". Can someone plz explain why I am getting this...
Hi,
I want to create journals in nx using java language. I am using eclipse for writing journals. I have the help file of NX open with me.
Can someone tell me where to find nx open API packages & how to import them in eclipse? When I am writing import nxopen.* in eclipse, its showing me "The...