To display CATIA V5 Version, release and Service Pack in CATIA V5 application window left upper corner.
1. Create a CATScript name for example as "StartTitleName.catvbs" as follow:
- Sub CATMain()
CATVer=CATIA.SystemConfiguration.Version
CATRel=CATIA.SystemConfiguration.Release
CATSp=CATIA.SystemConfiguration.ServicePack
CATIA.Application.Caption=" CATIA V" & CATVer & "R" & CATRel & " SP" & CATSP
End Sub
2. In the CATIA Shortcut, add "-macro X:\Path\MacroName.catvbs" in the Properties of the "Target:" as follow:
- "X:\Program Files\Dassault Systemes\B18\intel_a\code\bin\CATSTART.exe" -run "CNEXT.exe -macro E:\CATIA\Start-Script\StartTitleName.catvbs" -env CATIA.V5R18.B18 -direnv "C:\Documents and Settings\All Users\Application Data\DassaultSystemes\CATEnv" -nowindow
When starting CATIA with this modified CATIA Start-Icon, the Version, Release and Service Pack information appears in the CATIA Title Bar. |