Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X
Hello All,
Does anyone know if there is a way to customize the title bar text of the Creo 4 application window so that it reads a custom text string instead of just "Creo Parametric".
In Creo Elements Direct you have the ability to place an argument after the exe labeled -TITLE and then give it a text string that would show up in the title bar of the application window.
Thank you for all replies.
Regards,
Thom
Hi Thom,
AFAIK it's not directly supported.
I think you can use the API with ProUIDialogTitleSet(); with your current window name. You can get this by these commands
if (ProWindowCurrentGet(&winid) == PRO_TK_NO_ERROR && ProNavigatorpanePHolderDevicenameGet(winid, &devicename) == PRO_TK_NO_ERROR) {
Br,
Eike