• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Discussion Groups

    Autodesk Inventor

    Reply
    Distinguished Contributor
    Posts: 459
    Registered: ‎11-20-2003

    Model Crashes during edit

    19 Views, 5 Replies
    11-25-2002 11:41 PM
    I have one model on my system, that will crash as soon as I try to edit any attribute. By crashing, I mean it shuts Inventor off. I am using IV6 with SP1. I have tried this on a couple of different computers with the same result. I would like to upload the model for your analysis. I can't remember where the upload area is.Please give me a path, or directions. Has anyone else experienced this? I need to modify this model!
    A Little help please, AutoDesk!
    Thanks,
    Bill
    Thank You

    Bill

    Inventor 2011 Pro 64 bit
    Windows XP Pro 64 bit
    Dell Precision PWS390
    Intel Core 2 CPU 6700 @2.66GHz
    7.93 GHz Ram
    ATI FireGL V7200
    Please use plain text.
    *Bender, Keith

    Re: Model Crashes during edit

    11-26-2002 01:55 AM in reply to: bhowe

     

    I believe this link will get you there. 

     

    Keith


    style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
    I
    have one model on my system, that will crash as soon as I try to edit any
    attribute. By crashing, I mean it shuts Inventor off. I am using IV6 with SP1.
    I have tried this on a couple of different computers with the same result. I
    would like to upload the model for your analysis. I can't remember where the
    upload area is.Please give me a path, or directions. Has anyone else
    experienced this? I need to modify this model!
    A Little help please,
    AutoDesk!
    Thanks,
    Bill
    Please use plain text.
    *Autodesk\

    Re: Model Crashes during edit

    11-26-2002 06:46 AM in reply to: bhowe
    I filed a defect against the crash. I rolled the end of part marker to the
    top, and then rolled it back down one feature at a time to find the problem.
    Sketch11 has bad reference geometry. This is probably what causes
    Revolution2 to crash. I posted the rolled back part to CF. You will have to
    use that to rebuild the last couple of features or go back to an old version
    that is stable.

    Loren Jahraus
    Autodesk Inventor Workflow Team

    "bhowe" wrote in message
    news:f12778b.-1@WebX.maYIadrTaRb...
    > I have one model on my system, that will crash as soon as I try to edit
    any attribute. By crashing, I mean it shuts Inventor off. I am using IV6
    with SP1. I have tried this on a couple of different computers with the same
    result. I would like to upload the model for your analysis. I can't remember
    where the upload area is.Please give me a path, or directions. Has anyone
    else experienced this? I need to modify this model!
    > A Little help please, AutoDesk!
    > Thanks,
    > Bill
    >
    Please use plain text.
    *Howard, Jeff

    Re:

    11-26-2002 06:56 AM in reply to: bhowe
    Loren, sorry to go off on a tangent, but was wondering; Is the ability to
    delete features below the EOP in the works for future releases?

    Jeff
    ===================

    "Loren Jahraus (Autodesk)" wrote in message
    news:BBE94B018C1E42D0B23275902C45FB89@in.WebX.maYIadrTaRb...
    ....
    I rolled the end of part marker to the top, and then rolled it back down one
    feature at a time to find the problem.
    .....
    Please use plain text.
    *Keller, Kent

    Re:

    11-26-2002 07:59 AM in reply to: bhowe
    Jeff

    Paste this in a VBA module .... won't work with SM parts, but should be OK with regular
    parts.
    '**********************************
    Option Explicit

    Public Sub KillFeaturesPastEOP()

    Dim oPDoc As PartDocument
    Set oPDoc = ThisApplication.ActiveDocument

    Dim oFeatures As PartFeatures
    Set oFeatures = oPDoc.ComponentDefinition.Features

    Dim oFeature As PartFeature

    For Each oFeature In oFeatures
    If oFeature.HealthStatus = kBeyondStopNodeHealth Then
    oFeature.Delete
    End If
    Next

    End Sub

    '*****************************************

    --
    Kent
    Member of the Autodesk Discussion Forum Moderator Program


    "Jeff Howard" wrote in message
    news:B7EE2D693E18ACA4DECEF8BEA387ACD2@in.WebX.maYIadrTaRb...
    > Loren, sorry to go off on a tangent, but was wondering; Is the ability to
    > delete features below the EOP in the works for future releases?
    >
    > Jeff
    Please use plain text.
    *Howard, Jeff

    Re:

    11-26-2002 09:03 AM in reply to: bhowe
    Many thanks, Kent.

    ================
    "Kent Keller" wrote in message
    news:F4F17F3A86137B99A2B770F5FDCC65A8@in.WebX.maYIadrTaRb...

    Paste this in a VBA module ....

    ================
    "Jeff Howard" wrote in message
    news:B7EE2D693E18ACA4DECEF8BEA387ACD2@in.WebX.maYIadrTaRb...
    .......
    .. ability to delete features below the EOP ......
    .......
    Please use plain text.