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: *

  1. MarckyMON

    Get all hole center points in a drawing using NXopen ?

    Hi biw01, This is more complicated than you might think. I had designed some software for a client who had the same wishes. There are multiple points you need to consider: [ol 1] What exactly is a "hole"? This is a vague term; NX works with features. Therefore, a SUBTRACT feature with a...
  2. MarckyMON

    ug_excel_read different sheets in the same file

    I have just confirmed my above post. This does work. Marc NX Software Developer
  3. MarckyMON

    log points into a _dat file

    Yes, this should be possible. However, as far as I know, these dialogs are modal (http://en.wikipedia.org/wiki/Modal_window). That means the user won't be able to continue until the dialog has been closed first. What you want to do seems rather complex and could eat up a lot of performance. Do...
  4. MarckyMON

    log points into a _dat file

    No (at least I don't think so). What are you trying to accomplish? There might be an easier way to reach your goal. Marc NX Software Developer
  5. MarckyMON

    Replace Component and Instance Attributes

    Hello, I have come across the following situation where instance attributes are not updated when replacing a component. I'm using NX7.5.3.3 x64. Suppose I have two assemblies, A and D. A is structured as follows: A -B --C (A is the root occurrence, B is a child of A, and C is a child of B)...
  6. MarckyMON

    log points into a _dat file

    Not that I'm aware of. As far as I know, the Close method writes the buffer (memory) to file and saves it. If you keep the file open, you will only write to memory (e.g. the StreamWriter). Marc NX Software Developer
  7. MarckyMON

    Using NXOpen .exe's in a .tbr File for NX6

    Marc NX Software Developer
  8. MarckyMON

    Using NXOpen .exe's in a .tbr File for NX6

    Have you also tried isolating only one button, e.g. BUTTON REV_BLOCK LABEL REV BLOCK BITMAP U:\NX6_UGCustom\bitmaps\REV.bmp ACTION ${UGII_BASE_DIR}\ugii\managed\RevisionCreator.exe to ensure that there isn't some kind of syntax error? Marc NX Software Developer
  9. MarckyMON

    Using NXOpen .exe's in a .tbr File for NX6

    I think the keyowrd ACTION is only valid for DLLs. I am not sure, but I think you need the keyword EXECUTE to launch EXEs. Marc NX Software Developer
  10. MarckyMON

    Using NXOpen .exe's in a .tbr File for NX6

    Can you attach your toolbar so I can take a look at it? Marc NX Software Developer
  11. MarckyMON

    Error message #100525139

    You will need to check with GTAC. Marc NX Software Developer
  12. MarckyMON

    How do I get my custom .tbr to show up every time in NX 7.5?

    In addition, you can customize any NX toolbar and "extract" dropdown items and place them in any toolbar. Just right click on any gray toolbar area, the go to customize, then you can drag and drop any icon around as you like. Marc NX Software Developer
  13. MarckyMON

    How do I get my custom .tbr to show up every time in NX 7.5?

    Dropdowns are more compact because they take far less space than single buttons. Imagine you had a single button for each command in NX - you wouldn't have much space to do any modeling! In order to load your toolbar each time, you will need to add the folder containing the toolbar in the...
  14. MarckyMON

    NXOpen.BlockStyler.UIBlock

    Worked for me. The issue is either the code or some NX setting I am unaware of. Marc NX Software Developer
  15. MarckyMON

    NXOpen.BlockStyler.UIBlock

    Which NX version are you using? I think it would also be a good idea if you sent me your model. I have a strong feeling that the issue has to do with some NX settings... Marc NX Software Developer
  16. MarckyMON

    NXOpen.BlockStyler.UIBlock

    I just tried it. It works perfectly for me. Are you sure your expression is used with your model? Marc NX Software Developer
  17. MarckyMON

    NXOpen.BlockStyler.UIBlock

    If that were the case, then your expression would have its old value. Undo marks are usually used to rollback any changes in case of an error (as an example). Marc NX Software Developer
  18. MarckyMON

    NXOpen.BlockStyler.UIBlock

    Interesting... perhaps a forced interpart update is necessary, or the behavior is due to your NX settings. I will take a look and let you know. Marc NX Software Developer
  19. MarckyMON

    NXOpen.BlockStyler.UIBlock

    I'm not exactly sure what you mean. It should depend on how the expression is being used in the (work) part... Marc NX Software Developer
  20. MarckyMON

    NXOpen.BlockStyler.UIBlock

    Public Sub initialize_cb() Try group0 = CType(theDialog.TopBlock.FindBlock("group0"), NXOpen.BlockStyler.UIBlock) expression0 = CType(theDialog.TopBlock.FindBlock("expression0"), NXOpen.BlockStyler.UIBlock) Dim thicknessExp as Expression =...
Back
Top