Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: pKayy
  • Order by date
  1. pKayy

    CATIA V5 Tree Hide/Show Command

    Thanks itsmyjob! I knew about this setting, but for some reason, I was convinced that it controlled the movement of the tree. Thanks for the assistance!
  2. pKayy

    CATIA V5 Tree Hide/Show Command

    Hey guys, I've been looking on the net for a few hours now and can't seem to find the right solution to my problem. I'm experiencing a strange issue with CATIA V5 and the Hide/Show command. Whenever I hide/show any feature, it doesn't show up as hidden on my tree. The feature toggles from...
  3. pKayy

    Failed to check License in lum

    On the window where you choose licenses, click on the "Active Server:" button. This should match the network and port # your License Server Administration Tool is on. If not, you're missing a .txt file in your root folder.
  4. pKayy

    Views on assembly

    Maybe define work object at each part level? I'm not 100% sure.
  5. pKayy

    Count Parameter

    Yeah, I was going to suggest using the BOM feature to count everything. I don't really like the BOM feature in CATIA though... @djmjr I don't have a good answer for you at the moment. I'm working on a small piece of code for you but can't figure out one thing... I'll post anyway as it might...
  6. pKayy

    Count Parameter

    No attachment. Also, I don't think a parameter will work the way you're intending it to. Might have to use macro instead... I'm not an expert though, someone chime in and give us some knowledge. If you choose to go macro, you're going to get the For Next loop from 1 to the total number of...
  7. pKayy

    Count Parameter

    Should just be a simple For Next loop that searches for given part name and adds 1 every time it encounters it. Then you can assign the value of the desired name and input into a text box or whatever. Can't think of the code off the top of my head, but I'll see if I can get an example for you.
  8. pKayy

    Thoughts on an idea for a CatiaV5 save file macro?

    We use something similar to your idea at our shop. All of our non-standard components have a "#" in the front. Our renaming macro then searches all parts for "#", then adds in the job number in front of it. This macro has been in the company for a while, so I don't know the specifics. I can...
  9. pKayy

    Catia Catalog broken links

    Link to Catalog might be bad? Post some screen caps please.
  10. pKayy

    Breaking link/extract with VBA

    @ferdo I've tried it on many different work examples, and seems to be fine now. I will be tweaking the code later on to optimize it. Any specific lines that you see causing issues?
  11. pKayy

    Breaking link/extract with VBA

    Got the macro working now I believe... So far it is allowing me to create extracts regardless of their naming (the issue I was encountering before). Here is the code... 'Macro for creation of "Old Revision" references - Written by: P. Kim...
  12. pKayy

    Breaking link/extract with VBA

    Ahh okay, I will just replace the whole line with something else. Will update when I get it working. Thanks again ferdo!
  13. pKayy

    Breaking link/extract with VBA

    To be honest, I have no idea what that parameter is trying to say to me... I got this off "Record Macro". Would I replace the (Pad.1;1) with some variable that is set to the first face in my selected body? Just unfamiliar with the syntax. Cheers, EDIT: If you could actually explain that whole...
  14. pKayy

    Breaking link/extract with VBA

    Thank you everyone for your help. I was able to revise the code to get it to work for my needs. Here is the code for anyone else that wishes to accomplish something similar. Sub CATMain() Dim partDocument1 Set partDocument1 = CATIA.ActiveDocument Dim part1 Set part1 = partDocument1.Part...
  15. pKayy

    Breaking link/extract with VBA

    Yeah... it bothers me that we don't have a full PLM system integrated. I do know however that it is in the works for the future. Thanks for the help/suggestions guys.
  16. pKayy

    Breaking link/extract with VBA

    @JeniaL We do not save the old geometry into a new file, we just embed them into a geometric set within the part file. However, I agree that we should have a separate archive for our older designs... Unfortunately, management isn't willing to deviate from our standards.
  17. pKayy

    Breaking link/extract with VBA

    This is good, I can work with this. I will probably ask for user input at the beginning of the macro to select the necessary bodies/surfaces (should only be ~3 bodies/surfaces). Anyways, I will give this a shot during the week when I have some free time. Will update soon. Thanks Drew.
  18. pKayy

    Breaking link/extract with VBA

    Hey guys, Quick question. Not familiar with the syntax used to break the link (isolate) of a part or surface, or extract a selected surface. Here's a little summary of what I want. We go through a lot of revisions at our shop. Whenever an updated design comes in, we must extract all old...
  19. pKayy

    Catia edit properties

    Is there any reason why you must keep that specific name?
Back
Top