Recently active
Hi everyone,I am facing a problem to override the dimension value, I have created an dimension using ProDrawingDimensionCreate().And now I want to edit that dimension value through toolkit itself, manually we do it with using an option in drawing window called “override value of dimension”.But I am unable to do it with toolkit using API.Can anyone please help me by providing the solution.
Please, does anybody have an idea how to output the “strain energy per unit area” to report file for all of calculated prestressed modal modes? Or another way how to see the one area integrated number of N/mm separately for all of modal modes?Thx for support
Weld symbol for ISO standard in Creo 12.4 is supporting ISO2553:1984, acc to PTC Help and the PTC articles CS465068 & CS303110.This creates huge problems for companies that must be certified against ISO 3834-2. Which is applicable for example for companies with in the nuclear power industry. This companies are now forced to either create new custom symbols, (Which is quite complicated) or to make “fake” the symbols on the drawing adding lines and text manually.I suggest that the weld ISO weld symbols are updated acc. to latest ISO 2553 standard, that would be the one from 2019, Edition 5.
Creo has neat functionality in the restricted parameter list. Creo also has nice functionality in that you can import an .xml file to add parameters to a Model. It would appear that these two do not play well together. I am trying to update legacy models that have missing parameters and my .xml import was working wonderfully until I updated my restricted parameter.lst file. I get this message: Is there any way to make the import work? Is it a matter of my restrictions in my .lst not EXACTLY matching what I have in the .xml?
HiI am on Creo 10.0.9.0As detailed in the picture below, as I increase the value of the Transparency, opacity increases. Shouldn't it be named to Fill Opacity instead of Fill Transparency?Hope I am not missing anything.
Hello,I want to use Creo for simulations, but I can't access the simulation interface.The button under Application > Simulate is grayed out. The Flow and Mold Analysis buttons are both in color, even though I don’t have a license for Flow Analysis and can’t access the Flow environment.Is this due to the graphics card’s RAM, which is sufficient but not recommended or because the A400 isn't supported?Thank in advance The Hardware Check reports:Your hardware is not qualified for Creo Simulation LiveYour graphic card (GPU) is a supported NVIDIA CUDA based card. However GPU does not have enough video RAM to optimally support Creo Simulation Live.Creo Simulation Live relies on the latest graphics processing unit technology to provide its computation and visual experience and requires the following:A dedicated NVIDIA graphics processing unit card (Quadro recommended) based on the Kepler, Maxwell, or Pascal architecture. Most dedicated NVIDIA Graphics Processing Unit cards produced in 2013
Hello,I am trying to simulate a press-fit snap feature for validation, however when I run the simulation I get the error “Run completed with fatal error”.Following parameters are set:Mesh:Component-component interface (contact), assumed 0 friction (also attempted surface-surface contact with 0.2 COF) Mesh on both parts with 1mm localized elements on snap-features (tetrahedral)Constraints:Prescribed 3mm movement in +Z direction on Part A (to push part A onto part B), fixed in X and Y direction Part B constrained in XYZ directionMaterial Assignments:“Part A” Full-hard stainless steel “Part B” Xantar 22R (PC)Analysis Settings: Section view of snap fit Can anyone assist? Many thanks.
I finally got permission and funding from Da Boss to go this year. Who else is going? If you are, want to schedule a meetup during one of the days?
Hello,Like it says in the title, while placing/replacing a component inside the assembly, the 3D display dragger is not shown despite the fact that the option to show the dragger is selected. Does anyone know what could be the issue. This problem occured when I tried opening the separate component display window.
Hello, I would like to ask if there is any way how to find out in which assemblies is used one particular part. We have a large folder with several similar assemblies. Then there are two versions of similar part, for example. If I open all the assemblies at first, so they are loaded in session memory, I can use reference viewer to find out where is this particular part used. But is there any way how to do this without opening a large number of assemblies? Hope my question is understandable, thanks for replies.
I want to know which axis this part can move towards after I cooperate with the constraints. Can this be obtained
Is there a way in Creo Parametric to adjust splines with drag handles, like in Solidworks?I am trying to replicate a part from Solidworks, but I cant get the splines to behave just like in the Solidworks part. I’ve noticed that in the Solidworks feature the splines have ben drawn by draging the lines to the desired position.
When going to a part, right mouse click > Compare to Part structure, Compare to CAD structure.I'm missing the expand all button, how and where can i enable this button. Documentation says it should be there, i suspect it's been disabled in the past due to performance considerations. Can anyone confirm:1- Does this window have an expand all button, Compare to Part structure, Compare to CAD structure.2- Where can i find the config settings to change this? Thanks.
I am trying to create a flushed flange which goes around the boundary of a sheet metal part. When I try doing this with the flushed flange feature I run into a feature failed to regenerate error. I have tried the one by one standard chain, rule based partial loop/complete loop chains but nothing seems to work. Attached is the part I am trying to work on with the 8.4mm flushed flange and the corner cut at the edge Q.
wchar_t* wcTopName = strTopAssyName.GetBuffer();err = ProMdlnameRename(topAssyModel, wcTopName);if (err == PRO_TK_NO_ERROR) ProMdlSave(topAssyModel);//这里不卡死else AfxMessageBox(_T("总装配模型重命名失败!"));err = ProMdlnameRename(topAssyDrawing, wcTopName);if (err == PRO_TK_NO_ERROR) err = ProMdlSave(topAssyDrawing);//在这个位置发生卡死,保存工程图else AfxMessageBox(_T("总装配工程图重命名失败!"));strTopAssyName.ReleaseBuffer();
I need some cabling support, specifically: I need to run a series of cables through a conduit. I use the route network first, then the route cables. To have them side by side, I copy the network of the first one, at least for the straight segment. What I need is if there's a way, when I route cables, that my cables must fit inside my conduit, so I can set some clearances. If there are a lot of cables and they don't fit within the clearances, please let me know. Basically, I need the same thing you use for the holes; that is, I set the maximum clearance diameter through which certain cables can pass, but instead of circular areas, I need rectangular areas since they're conduits.Thanks in advance.
No question but a tip. I want to have the dimensions of a bush in the parameter SubtitleIf a dimension is rounds to zero, then I don't want that zero in the Parameter subtitle.Example:di = 0.8L = 2.5D = 4 RTOS defaults to rounding to 1 decimal (RTOS is available from Creo 11 and higher)If I would do it that way then it would be SUBTITLE = \ "d" + RTOS(Di)+\ " L" + RTOS(L)+\ " D" + RTOS(D)Which would result in Subtitle == d0.8 L2.5 D4.0 If I would type RTOS(D,0) then it would be "D4"With that knowledge I made an equation for how much decimals I need.Ceil(D - Floor (D))In this case if D = 4,2 it would be 4,2-4 which is 0,2 and it is then rounded up to 1If D = 4,0 then it would be 4,0 - 4 which is 0 and it is then rounded op to 0So then you getSUBTITLE = \ "d" + RTOS(Di,Ceil(Di - Floor (Di))) +\ " L" + RTOS(L,Ceil(L - Floor (L)))+\ " D" + RTOS(D,Ceil(D - Floor (D)))Which would result in Subtitle == d0.8 L2.5 D4But we are not there yet, because in edge cases where you h
How can I move the arrow position of the dimension using toolkit.Please refer the picture.I didn’t found any specific API.
Hi, I tried this How to get Layer status of Drawing layers | Community but it is not working, if I pass the ProMdl as drawing, if you have solution can you please share the code snippet //ProMdl model = (ProMdl)solid; //ProMdl model = (ProMdl)drawing; -→ fails here /* Visit layers */ ProMdlLayerVisit( model, (ProLayerAction)LayerVisitAction, NULL, (ProAppData)&view );
Ive been struggling to creat and report on the same run of modelcheck batchcreo 8.0.9.0 windows 11Ive already tried to input a list with xxx.prt.1 and long after xxx.prt.2 but it didnt work as well.
Hello !I run Creo 9.0.12.0 and I set the config.pro option auto_add_remove to yes. However, it looks like the option is not applied by Creo. No matter what side I move the extrusion arrow, I still have to select “Remove Material” to, well, remove material. Any insight here, please ? Google found nothing so far.Thanks !
I am using Creo Parametric Release 12.4 and Datecode12.4.3.0Subject: Creo 12.4 + Windchill: J-Link Model.Rename() always returns XToolkitCantModifyWe are migrating a Java J-Link workflow from Creo 6 to Creo 12.4 in a Windchill-linked environment.In Creo 12.4, Model.Rename(newName, false) fails consistently with XToolkitCantModify for both .asm and .drw.Isolated test (minimal):1. RetrieveModelWithOpts() on MAC_NEXTAIR_2.ASM and MAC_NEXTAIR_2.DRW2. CheckIsModifiable(false) => true3. CheckIsSaveAllowed(false) => true4. Model.Rename(...) => XToolkitCantModifyManual rename from Creo UI (same environment) works.We reviewed CS419079 / CS419066 about read-only policy since Creo 10, but our case is unclear because modifiable/save-allowed are true while J-Link rename still fails.Please confirm:1. Is J-Link Model.Rename() supported for Windchill-managed models in Creo 12.4?2. Is checkout mandatory for rename in this context?3. Is there a known difference between UI rename and J-Link rena
How can the default on drilled holes be changed to 140°? While 118° may be standard for a lot of drills, almost all of our drills Ø3/8 and up to Ø1-1/4" are 140° inserted tips. As a Creo NC user, I change models all the time sent to me by Engineering that have holes put in at 118°, just to match the drill that I will actually be using.
Can someone let me know the steps to create curves/splines from CSV Ai file?SEE Attach.It's AMAZING how fast Ai is catching up with human mind. PTC need deeper thinking… hahahaNEED TO BE ONE STEP UP!Creative Creo!
I just had Creo 10.0.7.0 crash. Thankfully I was no longer in any models at the time of the crash. Just starting to open a file. When I restarted Creo, all the “Recent” files are not from today - I had just seen them and chose one when the crash occurred. Any thoughts?
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.