Recently active
I am using Creo Parametric Release 5.0 and Datecode5.0.5.0When I select gohome on Creo it ouputs G0 I need this to output G28 command is there a way to change that? I am currently using Option File Generator add on to modify post.
I want to create the sub-assembly from the main assembly which is available now. I'm using Creo 7.0.4.0.I don't see any option to create the sub-assembly by selecting the components which i want to move to sub-assembly. Refer attached image. Could you please suggest an efficient way to create the sub-assembly from the main assembly ?
The disappearing cursor is being worked on, but now I have had another oddity come up in family table cells. The IT department has recommended that I check with PTC on this for possible RAM allocation error. The issues is that I had a MasterCAM logo show up in (2) of my family table cells. It is not very repeatable. I took a screen dump so here are two snippets of the family table: Thanks, Dale
I would like the ability to create a best fit line, circle, or arc from datum points. I frequently have to go back and forth from NX to CREO to get this functionality. You should be able to select graphically, or by pointset feature and create a line, circle or arc and also know the average and max deviation.
As per the original post. HI, i have the same problem here. if i use ProSolidFeatVisit() function to visit the assembly, how do i transfer between feature and modelitem? which value of ProSolidFeatVisit() function should be used? and do you mind share your code here, many thanks.
Hello Everyone, I have an issue with Creo regarding 2d drawing. I can create and do my 2d drawing without issue. BUT... when I want to re-open my 2d drawing, it does not open and complain that the PART (.prt) template is not in the same directory: Of course, my template is not in my working folder. The templates are on a shared folder. If I copy the template .prt to my folder, I can solve the issue on open it... but it's not really convenient. The goal was to have all template on a shared folder so everyone can access to it when creating a new file. Thank you for your help
I have a step file assembly imported into creo and the drawing BOM table sees it as a part. I cannot seem to correct this with any methods I am familiar with.
Has anyone created the "easy" hole table that includes counterbore depths, counterbore diameters, countersink depths, countersink angles and complete thread callouts. Maybe a new .hol file that calls variables? Tried tying parameters to each one, but even for standard, non-threaded holes they have to exist somewhere. I need a self-contained file I can call in my prodetail or config.pro.
Hi, I am using Creo 8. I have added a skeleton in the assembly to show where certain sub-assemblies get installed in relation to the higher level assembly. The skeleton is hidden in the model. In the drawing, I can show the skeleton by:In the Drawing View dialog box select View Display Under Skeleton model display, select Show(Article - CS64364)I am able to set the display such that the skeleton is outlined as phantom, however, when export the drawing in PDF, the skeleton does not show in the drawing. The only way I have managed to show the skeleton in the PDF is by unhiding the skeleton in the model. Once I do that, the skeleton gets printed. Is there a way where I can leave the skeleton hidden in the model, but show in the drawing AND exported/printed PDF? Thanks!
Hi, i've been trying to use ListFeaturesByType in VBA in Excel but didn't succeed. Sub FixParts() On Error GoTo Error ' put your code here Dim model As IpfcModel Set model = session.CurrentModel 'creating Fix Constraint Dim constraint As IpfcComponentConstraint Dim constructorOfConstraints As CCpfcComponentConstraint Set constructorOfConstraints = New CCpfcComponentConstraint Set constraint = constructorOfConstraints.Create(EpfcASM_CONSTRAINT_FIX) 'component path Dim solid As IpfcSolid Dim features As IpfcFeatures solid = CType(model, IpfcSolid) features = solid.ListFeaturesByType(True, EpfcFeatureType.EpfcFEATTYPE_COMPONENT) 'applying constraints ' end your code here Done: Exit Sub Error: Debug.Print Err.Description conn.Disconnect (5) Debug.Print "Disconnected" End Sub First thing. All examples that i've found using CType() function which is a converter from IpfcModel
Dear All,the activation key received for Modeling Express 6.0 is not working, eventhough it is the actual key received from PTC.I did not use the program for a longer period but this always worked in the past.Any idea how to go on?Yours Toby
Hello All,I am having a requirement to change the color/appearance of part/assembly with respect to requirement from flexibility window. I am having only 1 model for cap as shown in image and it is having 2 part numbers differentiated by color code. 1-for Green and 1-for Red. I would like to change the colors from "Red" to "Green" or vice versa with the help of flexibility window when assembled it in its upper level assembly. I am not sure which parameter does PTC Creo 7.0 has for appearance so that i can select that to add in CAP part, so when i am going to assemble this part in upper level assembly i can simply select color code/write in desired color code for my part to shown in that assembly.I did not want to use creo family table/PTC_MATERIAL_NAME parameter/quilts(a new feature) for separate color because it has to be done on many assembly/part.Kindly help, Thank you.
There are revision parameters in the 2D template I made, but after the new project drawing, the revision parameters are not called successfully, and the parameters are lost. How to solve this problem? 2D template:New engineering drawing:
I want to create a list of standard notes and put it in custom ribbon, once I click on that it should show all the pre prepared notes list from where I can pick the required one. Please help me to do this
We are a PTC Reseller in Brazil and Latin America. How can we get access to Creo+ ?
how to control file save iterations saving in folder. limiting no of iterations getting saved in foldernote save_file_iterations” to “yes”but want to set limit like 10 version only.
I'm trying to constrain a part, but when I go into the constraints, some of the parts disappear. I need to constrain to these parts, so any help would be appreciated.
For ModelCHECK in Creo 9 (or 10) is it possible to only run the checks on models which are not Locked? If the Windchill status is unlocked then I'd like to run ModelCHECK. I know I can configure the condition.mcc file to key in on parameters like PTC_MODIFIED and PTC_WM_LIFECYCLE_STATE. But these miss many use cases. Filtering on read only status would fit our workflow better. Maybe there is a hidden parameter value which can be accessed by the condition.mcc file?
Creo 7This seems insane that its not easier than this.I can not figure out how to get my parameter in my model to display my full stock size?I have the following parameters: thickness / width / length Then I have a relation: thickness=d12, width=d9, length=d10 (and these default to 2 decimal places) So then I thought, the relation, (stock_size = thickness "x" width "x" length) would give me what I'm after.Ex 1.50 x 2.50 x 3.50Nope, further digging got me to the following equation: STOCK_SIZE = itos(D12) + "." + itos( (D12 - floor(D12)) * 100 ) + " X " + itos(d9) + "." + itos( (d9- floor(d9)) * 100 ) + " X " + itos(d10) + "." + itos( (d10- floor(d10)) * 100 ) Which I arrived at because I needed this specific "itos" function to give me 2 decimal places. Now I get 2.50 x 3.50 x 4.50? (Not the 1.50 x 2.50 x 3.50 that it should be) So all my values have increased by (1) somehow.The itos function makes no sense to me but I suppose it works if I can find out what is c
Hi guys, i have a problém with broken view. When i make in Visible area Tab everything is OK, I can see the break lines but when I click apply and ok and the small window disappears then the break lines disappear too … can’t understand Thanks for help !
From what I gather, Creo Parametric has a very basic material library, which is missing many very common surface finishes. I've heard that, in order to procure magical dmt files that contain clear brushed aluminum, yellow and white zinc, tin, chromate, black oxide, brushed stainless steel, and other assorted apparently-exotic finishes, you need to cozy up to some wizened Pro/E veteran and convince them to share their personal dmt files with you. Is there anyone resident on this forum that would like to share their dmt libraries? Thanks in advance, Mike
When browsing files with Windows File Explorer and sorting a folder by file type,STP files are being listed as "PTC.Creo_Parametric.9.0.1.0" instead of "STP file".Seems to be only STP files, Parasolid file is still be listed as "X_T file".They do still show up as STP in Creo's file explorer. Issue came up this week, not sure what changed.No updates made to Creo or Windows. How do I get it back to showing STP files as STP files?Creo 9.0.1.0Windows 10 Pro
Hi!I would like to know, if is somehow possible to use the Referenc Designator from harness as parameter for balloon, so I can make the position balloons in my drawing.Way the Ref. Designator: because my harness has more than once the same connector. I have to specified this.The Way to do this is the Ref DesinatorBut positioning is assembly functionality. So how can I ether make handmade note as position with REAL harness parameter using the harness model as active (.prt) ot to make positioning using the parameter of the harness and to have the ".assy" as model..Explanation: I have assy ot the cabling: harness and connectors and I have just the harness model in the drawing inside. Tank you!
Hello EveryoneHow to load parts in assemble according to requirement without using IF Else condition in pro program.As I had seen some assemblies has being assembling using search path using external tool acc. to requirement. please guide how to create such type of assembly & tool required for it.I do had basic knowledge- about C & C++thanks in advanceWith regards,Thanoj Kumar
Hello dear community members, how do you deal with the fact that the toolkit DLLs you compile depend on other DLLs (e.g. any open source libraries)?As far as I know, the additional DLLs are only found when starting the auxiliary application in Creo if they are located in the Creo startup directory or a directory of the PATH environment variable.Or do you know a way for Creo to find the additional DLLs even if they are in the same directory as the Toolkit DLL itself? Thanks and regards,Domenic
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.