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

    CHECK IF DRAWING IS OUT OF DATE

    Thank you! This is what I was looking for...! Thank you! One more question if you can help me... I am new to Visual Studio (2010) IDE and I am missing some tips: 1) In the code editor, I write the object name and after the "." I must write the property or the method... What shortcut do I...
  2. agorts

    CHECK IF DRAWING IS OUT OF DATE

    If I want for a specific sheet to find which of the views are OutOfDate.... what is the property of the DrawingSheet object which contains the views collection? How can I read the OutOfDate flag? Thank you
  3. agorts

    CHECK IF DRAWING IS OUT OF DATE

    Dear Frank, It works! Thank you! for your time!
  4. agorts

    CHECK IF DRAWING IS OUT OF DATE

    Hello, I try: Dim view1 As Drawings.DraftingView Dim baseView1 As Drawings.BaseView = CType(workPart.DraftingViews.FindObject("TOP@3"), Drawings.BaseView) view1 = baseView1 Dim boolOutOfDate As Boolean IsObjectOutOfDate(view1, boolOutOfDate) If boolOutOfDate Then...
Back
Top