I want to display the parameters that depend on the design table. I prepared a code but I can't display some parameters. You can view the attachments.
Is there a way to view them? Thanks for support
I can get the following information about Constraint.
Its value displayed in 'refEleman1.DisplayName'
Is there a way to show it as marked?
(i need this to get list of all constraint in 3d model)
Hi Little Cthulhu
We wrote code for determining drawing update needs as you see below. When we play the code with F8, it works. But when we run the code automaticaly, it doesn't work. Do you have any idea for this problem.
Function DrawingUpdateNeed() As Boolean
Dim doc As Document...
Can you write the codes in your mind please. Because i cant find the way for products. Here you can find the code for part.
PartUpdateNeed = CATIA.ActiveDocument.Part.IsUpToDate(CATIA.ActiveDocument.Part)
I have problem with finding update status in Catia V5. I cant find if the product needs update. How can i find product update status?
Here you can find how i find part update needs.
For Each dokumanlar In CATIA.Documents
If TypeName(dokumanlar) = "PartDocument" Then
If...
I have a problem. I can import feature types in catia vba with the following codes
Set document1 = CATIA.Documents.Item("Product1.CATProduct")
Set products1 = document1.Product.Products
For i = 1 To products1.Count
MsgBox TypeName(products1.Item(i).ReferenceProduct.Parent)
Next i
but...