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 JStephen on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

catia + VB - creating two holes in one face

  • Thread starter Thread starter waniak
  • Start date Start date
Status
Not open for further replies.
W

waniak

Guest
Hi!
Why this code doesn't work:

Dim oHoleOPx As Hole
Set oHoleOPx =
oPart.ShapeFactory.AddNewHoleFromPoint(0,0,0,PowierzchniaCzolowaOP, 50)
Dim oHoleOPx1 As Hole
Set oHoleOPx1 =
oPart.ShapeFactory.AddNewHoleFromPoint(0,10,10,PowierzchniaCzolowaOP, 50)

PowierzchniaCzolowaOP is a reference to the face. The sketch is
created at the YZ plane.

What's wrong? CATIA can't create the second hole. It shows an error:
'Colinear directions: cannot build an axis or a plane'.


Best regards,
Michalcatia + VB - creating two holes in one face
 
Try updating the first hole ...

Try updating the first hole (calling oPart.UpdateObject oHoleOPx) before attempting to create the next.

The reference to the face is apparently temporarily not valid until this is done.

CliffJohnson, COE CATIA V5 Forum

Thanks.
3DCADTips Support Desk :cool:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top