OnScroll format for VC++
OnScroll format for VC++
we are using your Teechart ProActiveX control V5. I would like to know the format of the function OnScroll() which captures the event of the user clicking on the arrows of the x or y axis of the graph to move forward/backward (scroll) he range. This is for Visual C++. I need to know the format of ON_EVENT(GraphicTimePlotChart, IDC_TCHART1, ....) and also the format of the function itself OnScroll(). Thanks in advance.
Hi,
the format of the Scroll event is :
the format of the Scroll event is :
Code: Select all
void CScrollEventsDlg::OnOnScrollTchart1()
{
// TODO: Add your control notification handler code here
//.......
}
Pep Jorge
http://support.steema.com
http://support.steema.com
-
- Site Admin
- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
- Contact:
Hi -
The following definition works here:Do I need anything else?
Code: Select all
ON_EVENT(CVCplus6AXv5Dlg, IDC_TCHART1, 24 /* OnScroll */, OnOnScrollTchart1, VTS_NONE)
Thank you!
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/