CustomHelp not working

Stimulsoft Reports.NET discussion
casic
Posts: 68
Joined: Thu Jan 18, 2007 4:25 pm
Location: Germany

Re: CustomHelp not working

Post by casic »

Hello Aleksey,

is it planed to make the StiOptions.Designer.CustomHelp class working?

Have a nice weekend,

Cu

Markus
HighAley
Posts: 8430
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

Re: CustomHelp not working

Post by HighAley »

Hello, Markus.

We have discussed your request with our team-leader once again and have made a decision to add a new feature. This will be not CustomHelp class.
We will let you know how it works when it will be available.

Thank you.
casic
Posts: 68
Joined: Thu Jan 18, 2007 4:25 pm
Location: Germany

Re: CustomHelp not working

Post by casic »

Great!!!

Thank you very much in advance,

Cu,

Markus
Alex K.
Posts: 6488
Joined: Thu Jul 29, 2010 2:37 am

Re: CustomHelp not working

Post by Alex K. »

Hello,

Please try to check the next prerelease build and the following code:

Code: Select all

StiOptions.Engine.GlobalEvents.OpenHelp += (sender, args) =>
{
    args.HeaderText = "Header Text";
    args.Url = "http://www.stimulsoft.com";
    args.Processed = true;
};
Thank you.
Post Reply