View not precise ...

View not precise ...

Anonymous
Not applicable
271 Views
3 Replies
Message 1 of 4

View not precise ...

Anonymous
Not applicable
Hi!
Is there a way to avoid the dialog 'Some of the views on the following
sheet(s) ar not precise' or to tell when Inventor has finished generating
the model or drawing? Is there an event or a property that can tell me that?

Thanks in advance

/Per
0 Likes
272 Views
3 Replies
Replies (3)
Message 2 of 4

Anonymous
Not applicable
Sounds like your trying to do some batch operations.......That event is not available yet. Mike
0 Likes
Message 3 of 4

Anonymous
Not applicable
It it as avaible in 5.3 but not in 5.

 

Sheet.Status

 

you will have to loop until the sheet status is
equal to kUpToDateDrawingSheet

 

 Mike Martin


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
Sounds
like your trying to do some batch operations.......That event is not available
yet. Mike
0 Likes
Message 4 of 4

Anonymous
Not applicable
The sample code in the online help for the Status
property is incorrect.  The code below should work.

 

    If oSheet.Status And
kProcessingPreciseDisplayDrawingSheet = kProcessingPreciseDisplayDrawingSheet
Then

        MsgBox
"Sheet is still processing."

    Else

        MsgBox
"Sheet is up to date."

    End If

 

-Brian




style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">

It it as avaible in 5.3 but not in
5.

 

Sheet.Status

 

you will have to loop until the sheet status is
equal to kUpToDateDrawingSheet

 

 Mike Martin


style="PADDING-RIGHT: 0px; PADDING-LEFT: 5px; MARGIN-LEFT: 5px; BORDER-LEFT: #000000 2px solid; MARGIN-RIGHT: 0px">
Sounds
like your trying to do some batch operations.......That event is not
available yet. Mike
0 Likes