hello,
I'm using v2 for .NET and delivering a feature for my customers to let them open the TeeChart Editor.
The editor contains an help button that opens an help file that it's good for developers but not for end users.
Is it possible to hide this button or change the file to be open? If yes, do you have an end user help file?
Many thanks,
Matteo
Help button on TeeChart Editor
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Matteo,
You should have a look at the TeeChart Pro .NET tutorials, Tutorial17 – Designtime Runtime and License considerations:
You should have a look at the TeeChart Pro .NET tutorials, Tutorial17 – Designtime Runtime and License considerations:
You'll find the tutorials at TeeChart's program group.Runtime Editor Help support
TeeChart's Editor may be implemented at runtime to enable your application users to modify Chart settings. TeeChart's own designtime programmer help does not extend to runtime but you have the option to add your own helpfile to be opened by the Help button on the Chart Editor at runtime.
Configuration
Your helpfile should be chm format (HTML Help v1)
The helpfile should be runtime registered when installed at the following registry location:
[HKEY_LOCAL_MACHINEHelp]
"YourHelpfile.chm"="drive:\directory"
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
registry key
hello,
is it possible to hide the help button?
Can you tell me where to find the registry key:
[HKEY_LOCAL_MACHINEHelp]
It sounds wrong typed to me.
Thanks,
Matteo
is it possible to hide the help button?
Can you tell me where to find the registry key:
[HKEY_LOCAL_MACHINEHelp]
It sounds wrong typed to me.
Thanks,
Matteo
Hello Matteo,
Yes, thanks for pointing that out, it's incorrect. We'll correct the documentation for the next update.
That should be:
Regards,
Marc Meumann
Yes, thanks for pointing that out, it's incorrect. We'll correct the documentation for the next update.
That should be:
Code: Select all
[HKEY_LOCAL_MACHINE\\SOFTWARE\\Microsoft\\Windows\\HTML Help]
"YourHelpfile.chm"="drive:\directory"
Marc Meumann
Steema Support
Hello Mateo,
Here's an example of useage. It's not very intuitive so we'll make sure to add this or a similar example to the documentation.
Regards,
Marc Meumann
Here's an example of useage. It's not very intuitive so we'll make sure to add this or a similar example to the documentation.
Code: Select all
private void button2_Click(object sender, System.EventArgs e)
{
Steema.TeeChart.Editor editor = new Steema.TeeChart.Editor(tChart1);
editor.HelpFileName="myHelpFile.chm";
editor.Title="My Charting App - Chart Editor";
Steema.TeeChart.Editors.ChartEditorOptions[] options=new Steema.TeeChart.Editors.ChartEditorOptions[2];
options[0]=Steema.TeeChart.Editors.ChartEditorOptions.Help;
options[1]=Steema.TeeChart.Editors.ChartEditorOptions.Add;
options[1]=Steema.TeeChart.Editors.ChartEditorOptions.Delete;
editor.Options=options;
editor.ShowModal();
}
Marc Meumann
Steema Support
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hi Vaughan,
It became available in v2.
It became available in v2.
Best Regards,
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |