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. Altojoe

    Journal For Moving Component

    Hi, I Have following conditions to be Changed to Code. 1. I have a Axis and movement value along the axis I want Translation Vector for this. 2. I have a axis Which need to be converted to Double in this format "Dim MyAxis as Double ={Axis.XXX, Axis.YYY, Axis.ZZZ}" it is to find Rotation...
  2. Altojoe

    View Information to String

    Thanks Cowski... It worked like a charm...[bigsmile] For Each tempView As Drawings.DraftingView In workPart.DraftingViews If TypeOf (tempView) Is Drawings.SectionView Then Dim viewLabelTag As Tag...
  3. Altojoe

    View Information to String

    Hi Cowski, I am unable to tag the view label for the temp view which u have highlighted a small help will be helpful... For Each tempView As Drawings.DraftingView In workPart.DraftingViews If TypeOf (tempView) Is Drawings.SectionView Then...
  4. Altojoe

    View Information to String

    Thanks Cowski... I got this approach earlier but I have used some wrong references (I guess), It didn't worked for me..... Thanks for giving the correct code... I will update once it is verfied...[2thumbsup]
  5. Altojoe

    View Information to String

    Thanks Cowski, My Intention is to check that whether the view have Solid section curve or not (Drafting curve Type). If they Don't have I need to change the view label as VIEW "X" else it should be SECTION "X", I have found a method to get to the Viewlabelparms for editing the label prefix but...
  6. Altojoe

    View Information to String

    HI, I need a journal to get a drafting view information(Ctrl +I) text to string (VB) to perform a check...How to get that... I am using NX 7.5..
  7. Altojoe

    Need Help on below journal

    Thanks Cowski... As per our default company standards we are using ideas_iso as "51" and they are maintaing the same in all the documents also, Any how its a valid and good point I will change that from font "51". and one more question Section line label has been counted as a note when I am...
  8. Altojoe

    Need Help on below journal

    Thanks Cowski, I modified the Script as per my requirement and it's Working Good with the tables in NX 7.5. 'Update All table cells Dim myTabularNoteTags As New List(Of Tag) If FindTabularNotes(myTabularNoteTags) = 0 Then 'no tabular notes to process...
  9. Altojoe

    Need Help on below journal

    Thanks for the quick reply cowski, i have nx 7.5 Only except the table font everything else works fine..... i am using visual studio to compile the programme....
  10. Altojoe

    Need Help on below journal

    Hi, I have created a journal to update some of the fonts in Dwg, In the below code I am unable to get update from Table fonts and also I need some inputs for the lettering size factor in view label style...I want to control it through VBA... Thanks in Advance.... [pc] Option Strict Off Imports...
  11. Altojoe

    Need Help on Following journal

    Thanks Cowski, Thats Worked well. Also I want to Extend it to all sheets like a stamp in all sheets Do i need to loop the command to all the sheets or anyother option Available.
  12. Altojoe

    Need Help on Following journal

    Hi, I created a following Journal to move a note orgin from one place to another, After running the note is still in the old Place. After that I am not even able to select or move the note manually.But when i checked the note properties orgin got moved to new place but not the note. Also i...
  13. Altojoe

    NX Journal needed To copy attribute

    Thanks
  14. Altojoe

    NX symbols referrence in Journal

    Option Strict Off Imports System Imports NXOpen Imports System.Collections.Generic Module NXJournal Sub Main Dim theSession As Session = Session.GetSession() Dim workpart As Part = theSession.Parts.Display Const SymbolsLayer as Integer = 254 For each SymbolsObj as...
  15. Altojoe

    NX symbols referrence in Journal

    [2thumbsup]Thanks a lot for the guidance instead of helipng.....Cheers
  16. Altojoe

    NX symbols referrence in Journal

    thanks a lot Cowski
  17. Altojoe

    NX symbols referrence in Journal

    Thanks Cowski.. Can you please give the required names for this list like .Idsymbols GD&T Symbols Surface Finish Intersection Target Point Offset Center Point Userdefined symbols Area fill DMV Faceted Representation Dim by parts label on parent So that I can able to extend the journal to...
  18. Altojoe

    NX symbols referrence in Journal

    How to ref the symbols in journal i created one journal to move all the symbols to layer 254 as following. but it is showing an error symbol is not a part of NXOPEN.Annotations.AnnotationManager I dont know how it will read in jornal for symbols i want all the subtypes needs to be selected...
  19. Altojoe

    NX Journal needed To copy attribute

    NX 7.5
  20. Altojoe

    NX Journal needed To copy attribute

    TO copy a attribute of a Part (For Example say callout) to a clipboard in following format <W!xxxxx@CALLOUT>
Back
Top