Page 1 of 1

How programmatically show "Replay status box" during test ex

Posted: Fri Mar 16, 2012 9:24 am
by Maxim
I use ranorex API dll and i want during the execution test to get information about ranorex actions in "Replay status box".
recorder-replay-info-box-48.jpg
How do that?

Re: How programmatically show "Replay status box" during test ex

Posted: Fri Mar 16, 2012 12:37 pm
by Support Team
Hi,

The status bar just shows the performing action, you already have the information which is shown, because you created them.
So what do you exactly want to accomplish?

Regards,
Markus
Ranorex Support Team

Re: How programmatically show "Replay status box" during test ex

Posted: Fri Mar 16, 2012 5:35 pm
by Maxim
I don't use 'Ranorex Studio' for execution my test cases.

I use Ranorex API in Visual Studio 2010 TestClass (http://www.ranorex.com/support/user-gui ... ation.html)

So, 'Replay status box' does not appear.

How i can call 'Replay status box' from my test case in Visual Studio 2010 ?

Re: How programmatically show "Replay status box" during test ex

Posted: Fri Mar 16, 2012 6:01 pm
by Ciege

Re: How programmatically show "Replay status box" during test ex

Posted: Mon Mar 19, 2012 10:08 am
by artur_gadomski
Ranorex.Controls.ProgressForm.Show();

Re: How programmatically show "Replay status box" during test ex

Posted: Tue Mar 20, 2012 2:27 pm
by Maxim
artur_gadomski wrote:Ranorex.Controls.ProgressForm.Show();
Thank a lot, very useful answer.