How programmatically show "Replay status box" during test ex

Class library usage, coding and language questions.
Maxim
Posts: 3
Joined: Mon Mar 12, 2012 8:17 am

How programmatically show "Replay status box" during test ex

Post by Maxim » Fri Mar 16, 2012 9:24 am

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?
You do not have the required permissions to view the files attached to this post.

User avatar
Support Team
Site Admin
Site Admin
Posts: 12145
Joined: Fri Jul 07, 2006 4:30 pm
Location: Houston, Texas, USA
Contact:

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

Post by Support Team » Fri Mar 16, 2012 12:37 pm

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

Maxim
Posts: 3
Joined: Mon Mar 12, 2012 8:17 am

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

Post by Maxim » Fri Mar 16, 2012 5:35 pm

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 ?

User avatar
Ciege
Posts: 1336
Joined: Thu Oct 16, 2008 6:46 pm
Location: Arizona, USA

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

Post by Ciege » Fri Mar 16, 2012 6:01 pm

If this or any response has helped you, please reply to the thread stating that it worked so other people with a similar issue will know how you fixed your issue!

Ciege...

User avatar
artur_gadomski
Posts: 207
Joined: Mon Jul 19, 2010 6:55 am
Location: Copenhagen, Denmark
Contact:

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

Post by artur_gadomski » Mon Mar 19, 2012 10:08 am

Ranorex.Controls.ProgressForm.Show();

Maxim
Posts: 3
Joined: Mon Mar 12, 2012 8:17 am

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

Post by Maxim » Tue Mar 20, 2012 2:27 pm

artur_gadomski wrote:Ranorex.Controls.ProgressForm.Show();
Thank a lot, very useful answer.