Search found 11 matches

by slither
Sat Jul 16, 2011 12:57 am
Forum: How To …
Topic: Determine if AUT is busy/blocked?
Replies: 3
Views: 4454

Re: Determine if AUT is busy/blocked?

@Ciege: No visible indication whatsoever. It is a design flaw, but I don't have access to the code for fixing, so I'm looking for ways around that. It'll most likely have to be a Win32API call...
by slither
Fri Jul 15, 2011 11:25 pm
Forum: How To …
Topic: Determine if AUT is busy/blocked?
Replies: 3
Views: 4454

Determine if AUT is busy/blocked?

How do you guys determine when the AUT is doing heavy processing/busy/blocked? I'm dealing with an app that spends a lot of time waiting for the DB to respond. When the app is waiting for the DB results, the app itself is idle (doesn't register any CPU usage), but it's blocked (you can't click or in...
by slither
Thu Jun 30, 2011 5:02 pm
Forum: Object Identification and Technologies
Topic: vbAccelerator S-Grid Control
Replies: 2
Views: 2838

Re: vbAccelerator S-Grid Control

I should note that I'm using the following:

Win7x64 SP1
Ranorex 3.0.2 (in this case, Ranorex Spy x86)
by slither
Thu Jun 30, 2011 5:00 pm
Forum: Object Identification and Technologies
Topic: vbAccelerator S-Grid Control
Replies: 2
Views: 2838

vbAccelerator S-Grid Control

I'm currently trying to test a VB6 application. For the most part it seems to work well, except I'm unable to get any data of the data in the grid controls. The controls themselves are OCX/Activex vbaccelerator http://www.vbaccelerator.com/codelib/sgrid/sgrid.htm S-Grid controls. With the GDI featur...
by slither
Wed Jul 15, 2009 8:10 pm
Forum: General Questions
Topic: Adapters & Elements
Replies: 5
Views: 4937

Re: Adapters & Elements

It should. I just did a test with a sample WPF application, and it returned a proper Window Handle.
by slither
Wed Jul 15, 2009 5:24 pm
Forum: General Questions
Topic: Adapters & Elements
Replies: 5
Views: 4937

Re: Adapters & Elements

All the juicy details are located in the Element of the adapter (myAdapter.Element).

To get the window handle:

Ranorex.Form frm = @"RxPath to a form";
IntPtr hWnd = (IntPtr) frm.Element.GetAttributeValue("Handle");
by slither
Wed Jul 15, 2009 2:45 pm
Forum: Automation Tools
Topic: Feature Request: Location Co-ordinates Display
Replies: 3
Views: 2987

Feature Request: Location Co-ordinates Display

Hi, I'm currently trying to map controls in an older application (VB6), and once of the controls (TabStrip) is not supported by Ranorex. So in order to interact with the tabs, I will have to use the .Click(Location) method. It would be nice that when a control is instant tracked (ctrl+lwin), that we...
by slither
Wed Jul 15, 2009 2:18 pm
Forum: Automation Tools
Topic: Default Property to use when generating RxPaths
Replies: 4
Views: 3125

Re: Default Property to use when generating RxPaths

Thank you very much. The plugin works like a charm! :)
by slither
Tue Jul 07, 2009 7:26 pm
Forum: Automation Tools
Topic: Default Property to use when generating RxPaths
Replies: 4
Views: 3125

Default Property to use when generating RxPaths

In one of my applications, when I track a Form with RanorexSpy to obtain the RxPath, by default it returns an RxPath with the "Controlid" property. Are there any settings available to change the default behaviour? (ie, to always return an RxPath with the Form's Title, or other property, instead of C...
by slither
Fri Jun 26, 2009 5:17 pm
Forum: Automation API
Topic: Organization and Best Practice
Replies: 8
Views: 3831

Organization and Best Practice

We recently bought Ranorex Pro with the intention of developing our test scripts in VS2008. Our application is a large Enterprise application. We have a lot of forms (over 100) in it. We will be creating a Repository for it using RanorexSpy. Once your repository is created, how do you use it? Would ...
by slither
Thu Jun 18, 2009 4:07 pm
Forum: General Questions
Topic: Waiting for a form to be visible
Replies: 2
Views: 3586

Waiting for a form to be visible

In the application we are testing, sometimes it takes a little while for a form to be visible. Lets say I click the MenuBar to load FormA. I then do a FindSingle<Ranorex.Form>("myRxPath"); to find the form. It does find the form almost right away (i'm guessing it's in memory, but not visible yet). T...