Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng 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 DQuick

  1. DQuick

    Journal to find and move groups by names to a given layer??

    I managed to find a method to accomplish this. A sample code is below if anyone is interested. Private Function move_group(Byref GROUP_NAME As String, Byref destination_layer As Integer) Dim theSession As Session = Session.GetSession() Dim WorkPart As Part = theSession.Parts.Work Dim...
  2. DQuick

    Journal to list reference sets in a part

    @FrankSwinks The programs are similar to what I was looking for but from looking at them i found the CycleObjsInPart function which has allowed me to accomplish what I was looking for. Thanks Below is what i cam up with: Option Strict Off Imports System Imports NXOpen Imports NXOpen.UF...
  3. DQuick

    Journal to list reference sets in a part

    This is being done on the detail level, not the assembly. The assemblies that they feed into currently use various reference sets or entire part and we will be replacing them all to use a single model reference set. Is there a way to list each reference set in a detail part or just delete all...
  4. DQuick

    Journal to list reference sets in a part

    Is there any way to create a list of reference sets in a part? We are in the process of taking ~2000 models from a customer and reformatting them to our standards which requires replacing the existing reference sets with our own along with a few other cleaning operations. I have been able to...
  5. DQuick

    Hide Custom Toolbar

    Thats about what I figured the answer would be. The method we are using now is having each user customize the toolbars, but given all the toolbars are also contained in a menu I think we are going to do away with the custom toolbars and just let the user create thier own toolbar with commands...
  6. DQuick

    Hide Custom Toolbar

    Thanks for the reply, but thats not exactly what I am looking for. It would work fine for custom toolbars that a users creates as part of their role, but I am not seeing that option for toolbars created with a .tbr file. When they are created with a tbr file the toolbars can be shared between...
  7. DQuick

    Hide Custom Toolbar

    I have developed several custom toolbars for use within my company and have setup a common network startup directory so that all computers can load them. The problem I am having is that everytime I add a new toolbar or modify an existing one, the toolbar reappears in all applications. Is there...
  8. DQuick

    Journal to find and move groups by names to a given layer??

    Is it possible, using a journal, to search for a group by name, ie group_a, group_b, group_c..., then move that group as well as its contents to a given layer? I have tried recording a journal to do this, but it finds the group and objects all individually using a journal identifier, not by...

Part and Inventory Search

Back
Top