cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X

How to Activate Dialog Help Button

Shaffer
5-Regular Member

How to Activate Dialog Help Button

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?

1 ACCEPTED SOLUTION

Accepted Solutions

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

View solution in original post

4 REPLIES 4

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

@Eike_Hauptmann ,

 

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

Top Tags