Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

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

Recent content by kfraysur

  1. kfraysur

    View Control While Interrupting a Journal

    Unfortunately, both the NX message box and the .Net message box both take complete control away from the user until the message box is cleared. I don't believe that either will be a solution to this problem.
  2. kfraysur

    View Control While Interrupting a Journal

    Thanks for the response, cowski. I see that you have an entry about NX message boxes on nxjournaling.com (a great site that everyone should visit!). I will take a look and see if I can use that to create the journal I need.
  3. kfraysur

    View Control While Interrupting a Journal

    I am looking to create a journal that will turn on specific layers for the user, allow the user to view the model at different angles, advance to a next step with new layers turned on, and repeat until the user has reviewed all necessary layers. As an example, when the user runs the journal...
  4. kfraysur

    Journaling - Changing the Value of multiple Expressions

    I did. Thanks cowski and everyone else for the help, it's really appreciate it.
  5. kfraysur

    Journaling - Changing the Value of multiple Expressions

    Looking into this further, I thought I had solved the problem by using the line Dim AA as New RegEx("^\d") to look only for the RightHandSide values that begin with a number only. Unfortunately, some of the expressions I am looking to change actually start with a decimal point (instead of...
  6. kfraysur

    Journaling - Changing the Value of multiple Expressions

    I think the Regular Expression is probably overkill for the current application. I am only looking to change expressions with a single integer value.
  7. kfraysur

    Journaling - Changing the Value of multiple Expressions

    Thanks for the help. The value of the expression will always be an integer, 0.05 or something similar.
  8. kfraysur

    Journaling - Changing the Value of multiple Expressions

    Cowski and others have helped me in the past to create a journal that would locate and edit the names of multiple expressions in a given part. I would like to do something similar with expression values. Basically I want the journal to locate all expressions with a specified value, then change...
  9. kfraysur

    NX8 Journaling: Automating the Movement of Objects from one CSYS to the Part Absolute CSYS

    Thanks for the tip cowski. I will look to implement that in this process as well as the stp file export I was talking about before.
  10. kfraysur

    NX8 Journaling: Automating the Movement of Objects from one CSYS to the Part Absolute CSYS

    Frank, Thanks for the response. After I left the office last night I went back and looked at some code for an automated stp file export we use (admittedly, I should have done this prior to posting) and realized the changes I needed to make to get the code to work for this. I'm glad to see that...
  11. kfraysur

    NX8 Journaling: Automating the Movement of Objects from one CSYS to the Part Absolute CSYS

    Frank, The direction of the Y-axis is working as intended. Thank you so much. As for the movement from one CSYS to another, the part file is only going to have points, lines, and datum planes when the move function will be called. Unfortunately the current code will not work. How difficult...
  12. kfraysur

    NX8 Journaling: Automating the Movement of Objects from one CSYS to the Part Absolute CSYS

    Yes, the imported files contain only coordinate data for point creation. These points are used to create planes and lines. I've already got this part working and implemented in our system, which is discussed here: As this is part of a larger journal that will import data from several files, I...
  13. kfraysur

    NX8 Journaling: Automating the Movement of Objects from one CSYS to the Part Absolute CSYS

    How difficult would it be to take all points, lines, bodies, everything from all layers and move them from a defined CSYS to the part's absolute coordinate system? This would essentially automate the process of doing a 'Move Object' function of the 'CSYS to CSYS' variety and selecting everything...
  14. kfraysur

    Journal - Select objects to change layer

    Something like this should work: Const SketchLayerStart as Integer = 21 'Make 'MaxLayer' the last layer you are willing to move a sketch to Const MaxLayer as Integer = 35 dim i as integer = 0 dim j as integer = SketchLayerStart 'move sketches for each sketchObj as Sketch in...
  15. kfraysur

    Journal - Select objects to change layer

    Looks like that line should read: sketchObj.Layer = SketchLayerStart + i

Part and Inventory Search