Page 1 of 1

Location of selectedobject or mouse

Posted: Mon Mar 04, 2013 3:28 pm
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

Re: Location of selectedobject or mouse

Posted: Tue Mar 05, 2013 8:49 am
by Alex K.
Hello,

Please see the sample project in the attachment.

Thank you.

Re: Location of selectedobject or mouse

Posted: Tue Mar 05, 2013 2:12 pm
by paullef
Great thanks.

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

Thanks
Paul

Re: Location of selectedobject or mouse

Posted: Wed Mar 06, 2013 6:17 am
by Alex K.
Hello,

Please try to use the following code:

Code: Select all

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