Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

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

Search results for query: *

  1. LucasC

    Add Leader to 2d Components

    Here's the code I use to remove leaders from balloons Dim MyLeaders Set MyLeaders = SelectedBalloon.Leaders On Error Resume Next MyLeaders.Remove (1) 'MsgBox Err.Number End Sub
  2. LucasC

    Creating custom drafting symbols

    Looking for info on what icon code type I need to create for the drafting standard xml file. I want to create additional custom drafting symbols. Creating a catalog is not what I'm looking to do. I don't know what type of code is shown in the icon 16x16 or 22x22. Once I can identify it I can...
  3. LucasC

    CATIA Macro Menu and IDE freezing V5

    Looking for ideas as to why V5 would freeze after just trying to open the "Macros..." from the drop down menu. I.T. reinstalled VB on my laptop which allowed the macro gui and IDE to open, however, trying to point to a .catvba file would again freeze V5. Multiple known good files were tried.
  4. LucasC

    Converting text selection to uppercase

    Can someone point out what I've done wrong? The intent is to simply select a textbox and change all lowercase characters to uppercase. Private Sub CommandButton41_Click() On Error Resume Next If InStr(CATIA.ActiveDocument.Name, ".CATDrawing") < 1 Then MsgBox "Active file is not a CATDrawing!"...
  5. LucasC

    CATDrawing Issue - Sheet Background Text Disappears

    Seems like a display driver issue. Try reverting or changing to a Dassault certified driver for your hardware/configuration.
  6. LucasC

    Weld Symbol properties

    I dug into my sheet standard .xml. There is a section for the field weld symbol, however, it only allows you to default it on or off when you initiate the weld command. Is it possible to add attributes in the XML to control its text height? If that's possible, it might give you what you want...
  7. LucasC

    3DCONNEXION - 3Dconnexion Viewer

    Viewer is just, a 3D viewing tool for CAD neutral formats.
  8. LucasC

    Catia - Assembly loading issue

    Ive had a similar problem. I will be editing a sketch and all of a sudden, all the sketch geometry goes hidden. I've also had this happen with the solids in a catpart. The only way Ive found to get the solid/geometry to re-appear is to close the file and re-open it. I didn't experience the red...
  9. LucasC

    Graphic card problem in V5R20

    Try CATDUAV5 to fix any potential errors on the file; With the file open: File >> Desk >> Right Click >> CATDUAV5 >> Clean >> Run another thing to try: Nvidea control panel >> Manage 3D Settings >> Program settings tab >> select CATIA and make it force to your RTX3050 GFX card. I had an...
  10. LucasC

    Graphic card problem in V5R20

    I've run into issues like this a lot over the years as my company upgrades or replaces hardware. Go to the Dassault website and find the list of certified drivers/equipment for CATIA. Using the newest driver isn't always the best idea...
  11. LucasC

    how to create a cumulated dimensions

    Maybe? Property CumulateMode( ) As boolean (Read Only) Returns cumulate mode or not. Example: This example retrieves cumulate mode or not MyDimension drawing dimension. oCumulateMode = MyDimension.CumulateMode
  12. LucasC

    Searching for Flagnotes in a part and listing them using EKL

    I'm not sure if this applies to what you need but there's a .chm file in the install you can reference.
  13. LucasC

    Sheet background View Locked

    Try this:
  14. LucasC

    Sheet background View Locked

    My thought is since your trying to insert the 2D component in the background, you have a active or red view in the working views. catia is probably considering that active view as non-editable or locked since its not in the sheet background. double click the the top item in the tree until all...
  15. LucasC

    Sheet background View Locked

    Try selecting the view in the tree and use the edit drop down menu --> properties. maybe post a picture or a better description of your situation.
  16. LucasC

    Reorder a Sketch in the Tree

    What do you mean by "but to make the User Pattern work, I need to move the sketch before the hole"? A user pattern is a transformation feature, it can't work unless the hole exists in the first place. I think you're trying to hatch a chicken before the egg has been extruded. It seems like you...
  17. LucasC

    Randomize surface colors in a CATPart

    You may want to explore a different search parameter. I think ,scr will only search what visible on your screen as you are viewing it. in other words, if you are zoomed in on one area, only that little bit will be captured when the macro is run.
  18. LucasC

    Randomize surface colors in a CATPart

    Visit this thread, is discusses some of the issues I had when building a similar code. https://www.eng-tips.com/viewthread.cfm?qid=450061
  19. LucasC

    CATIA V5 R29 very long loading time

    I experience terrible performance occasionally(slow loading, poor 3D visual quality,extremely slow response). I discovered V5 sometimes hooks to the integrated GPU in my laptop instead of the discrete GPU. I have V5 forced onto the quadro card in nvidea control panel. but you can see in the pic...
  20. LucasC

    Searching for FrontView Scale

    My code was completely wrong, but your suggestion gave me the clue i needed to make it work. thanks! Dim drawingDocument1 As DrawingDocument Set drawingDocument1 = CATIA.ActiveDocument 'Look for Front View Scale Value Dim FrontView As CatDrawingViewType Do Dim n n = n + 1 FrontView =...

Part and Inventory Search