Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X
There is an dialog attribute (.HelpButton) in source file which can be set to true.
But the help button is always gray out.
Does anyone know how to activate and set action for the help button in toolkit/object toolkit?
Solved! Go to Solution.
Hi
You need to use OTK.
// Header
class helplistener : public uifcDefaultDialogListener {
public:
void OnHelp(uifcDialog_ptr dialog);
void OnClose(uifcDialog_ptr dialog);
};
// Code
...
uifcDialogFind(DIALOG_NAME, DIALOG_NAME)->AddActionListener(new helplistener());
uifcDialogFind(DIALOG_NAME, DIALOG_NAME)->SetHasHelpButton(true);
...
void helplistener::OnHelp(uifcDialog_ptr dialog)
{
// do what ever you like
}
If there is no OnHelp Action is the same as if there is no OnClose Action. The Buttons are disabled.
The onHelp Action doesn't override the F1 Button Help Call.
Br,
Eike
Did you solved?
if so, Can you please tell me how to activate Dialog Help Button..
Hi
You need to use OTK.
// Header
class helplistener : public uifcDefaultDialogListener {
public:
void OnHelp(uifcDialog_ptr dialog);
void OnClose(uifcDialog_ptr dialog);
};
// Code
...
uifcDialogFind(DIALOG_NAME, DIALOG_NAME)->AddActionListener(new helplistener());
uifcDialogFind(DIALOG_NAME, DIALOG_NAME)->SetHasHelpButton(true);
...
void helplistener::OnHelp(uifcDialog_ptr dialog)
{
// do what ever you like
}
If there is no OnHelp Action is the same as if there is no OnClose Action. The Buttons are disabled.
The onHelp Action doesn't override the F1 Button Help Call.
Br,
Eike
Could you please tell me how to apply in C/C++ object toolkit?
Thanks,
Warm Regards,
SeonHo CHA
That is C++ OTK. In C (Pro/Toolkit API) it isn't possible. AFAIK there are no commands for the Help Icons (we are compiling on Creo 4.0, so not sure if they added in newer releases).
Br,
Eike