Location of selectedobject or mouse

Stimulsoft Reports.NET discussion
Post Reply
paullef
Posts: 41
Joined: Thu Jan 17, 2013 5:06 pm

Location of selectedobject or mouse

Post by paullef »

Hello,

I have integrated the designercontrol into my own application, and I want to have the position shown in the statusbar into my own statusbar, how can I do this?
And how do I get the report checker into my own interface (calling from a menubar)?

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

Re: Location of selectedobject or mouse

Post by Alex K. »

Hello,

Please see the sample project in the attachment.

Thank you.
Attachments
WindowsApplication2.zip
(7.92 KiB) Downloaded 191 times
paullef
Posts: 41
Joined: Thu Jan 17, 2013 5:06 pm

Re: Location of selectedobject or mouse

Post by paullef »

Great thanks.

Do you also have an answer on how to call the report checker from my own toolbar?

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

Re: Location of selectedobject or mouse

Post by Alex K. »

Hello,

Please try to use the following code:

Code: Select all

sbpReportChecker.Click += delegate
{
    designer.RunReportChecker(ToolBar);
};
Thank you.
Post Reply