CAA (Component Application Architecture) is a API for Plugin development for the commercial software CATIA based on a component object model (COM)-like interface. CATIA (Computer Aided Three-dimensional Interactive Application) is a CAD/CAM/CAE software.
Questions tagged [caa]
32 questions
4
votes
3 answers
CATIA CAA folder structure
I am new to Catia CAA development, when we create a project in Visual studio. Folder is created with Cnext, Identity card, Private/Public/Protected interfaces. Can anyone explain what all these folders actually are? Thanks for any response

Leo
- 41
- 4
3
votes
2 answers
How to Learn Flow in CATIA CAA V5 R18 c++
I am new to CAA. I have gone through CAA Documentation. I can find the interface I required for my need but I don't know from where should I query them. In CAA Documentation there is no detailed description of what the Interface is related to. How…

maha
- 53
- 10
1
vote
5 answers
Environment help for CAA Rade
I am new to CAA rade and programming within the integrated environment on Visual Studio 2005. I am wondering if there is any great resource/book that can introduce me to this platform. Every time I start exploring the encyclopedia or Visual studio I…

user1053806
- 19
- 1
- 3
1
vote
0 answers
How to enable run-time type information in Catia CAA?
While developing a plug-in for Catia using the CAA C++-Interface, I need to do a dynamic_cast:
DerivedClass *derived = dynamic_cast<*derived>(base);
When Build with mkmk, the compiler gives the warning:
[MkMk] warning C4541: 'dynamic_cast' used on…

Dragoner
- 123
- 1
- 12
1
vote
1 answer
Can we use only initialstate and null state in Buildgraph method of caa?
Can we use only initialstate and null state?If yes,how will it behave?

usmanharoon
- 173
- 2
- 13
1
vote
1 answer
CATIA-CAA CATKeyboardEvent
I know there are only a few CAA Programmers in the world but I try it anyway...
I can't get keyboard events to work. I found this code which looks reasonable but the Notification doesn't…

Alexander Stolz
- 7,454
- 12
- 57
- 64
1
vote
1 answer
Check hostname has CAA record in php 5.6
Good morning,
I'm currently facing a small problem. To create some automated process, I need to be able to check If a hostname has a CAA record.
CAA record are needed by letsencrypt to generate certificate. I wanted to use dns_get_record to check…

LinChan
- 417
- 1
- 5
- 17
1
vote
1 answer
CATIA-CAA CATNavigBox Resize
Is it possible to change the size of the treeview window after it has been visualized?
My code looks like this:
_p2DNavViewer = NULL;
_p2DNavViewer = new CATNavigation2DViewer(this, "", CATDlgFraNoTitle | CATDlgWndNoDecoration…

Alexander Stolz
- 7,454
- 12
- 57
- 64
1
vote
0 answers
CAA - How to read CATIA PartBody Feature Color?
How to read the Colour and Visiblity Details for features inside a CATPart.
In Which Container these details will be saved? What function we have to use ?

maha
- 53
- 10
0
votes
1 answer
How to read a custom path of a file in c++?
My file is located in C:\\Input\\pStep.p21 . i want to open that file in my cpp program. How can i do it? I am using char* inputPath="C:\\Input\\pStep.p21"; but its not finding my file in program. How to get current working directory in VC++?. Its…

user1061293
- 167
- 1
- 4
- 14
0
votes
1 answer
Subscribe to the CATIA specification tree changing event
Is there a way to subscribe to the changes in the CATIA specification tree and save that changes to some log file? As far as I understand, I probably need to use CATIModelEvents or CATEventSubscriber but how can I reach the tree itself?
P.S>…
user15611331
0
votes
2 answers
Getting compilation error for CATIA V5 R30 CAA build
I am looking for help on CATIA V5 R30 CAA help. I am getting the below error.
C:\Program Files\Dassault Systemes\B30.\BSFBuildtimeData\PublicInterfaces\CATIAV5Precompiled.h(47): fatal error C1083: Cannot open include file: 'wtypes.h': No such file…
0
votes
1 answer
CATIA: How to call CATCoPlyExplodeCmd
Is it possible to call from C++ catia command? How can I get any info about signature for this command?
Thanks,
Danil.

Danil Krivopustov
- 232
- 2
- 9
0
votes
0 answers
Letsencrypt not working for domain on Server/IP 1 and for subdomain on Server/IP 2 *using A and AAAA records
Letsencrypt not working for domain on Server/IP 1 and for subdomain on Server/IP 2 *using A and AAAA records
So we have 2 servers, 1 live and 1 staging
live has multidomain cert for non-www and www using Letsencrypt
live is hosted on server 1 with…

snh_nl
- 2,877
- 6
- 32
- 62
0
votes
1 answer
Fill select with ajax request
I'm loading the select with the data from the database only when I click on the select like this:
var cars =
[ { colour: 'red'}
, { colour: 'white'}
, { colour: 'black'}
]
let x = 0;
const campos_max =…

Bruno
- 801
- 5
- 11