Search found 15 matches

by Gryphyn
Thu Jan 17, 2008 9:38 pm
Forum: Automation API
Topic: .NET 3.0+ and UIAutomation namespace
Replies: 4
Views: 4093

Sounds good :D

G
by Gryphyn
Wed Jan 16, 2008 10:00 pm
Forum: Automation API
Topic: .NET 3.0+ and UIAutomation namespace
Replies: 4
Views: 4093

Jenö Yes, we are already developing with VS2008, and we can 'target' .NET2.0 And 'target'ing a higher .NET, we can still use the .NET2.0 assemblies. I was just wondering if we would see a new build with some updated tech behind it (even if in reality it's just a cascade to a prior .NET) Ranorex is f...
by Gryphyn
Tue Jan 15, 2008 11:21 pm
Forum: Automation API
Topic: .NET 3.0+ and UIAutomation namespace
Replies: 4
Views: 4093

.NET 3.0+ and UIAutomation namespace

A couple of questions. We're starting to develop using VS2008. which gives us .NET3.0 & .NET3.5 Not that I'm expecting immediate support, but will these addition .NET targets be included in Spring release of Ranorex? (1.4) Further to this, will the UIAutomation namespace (.NET3.0) features be compat...
by Gryphyn
Thu Nov 01, 2007 9:53 pm
Forum: Bug Reports
Topic: RanorexRegister.exe - incorrect configuration
Replies: 2
Views: 3431

Fixed! :D
by Gryphyn
Thu Nov 01, 2007 2:30 am
Forum: Bug Reports
Topic: RanorexRegister.exe - incorrect configuration
Replies: 2
Views: 3431

RanorexRegister.exe - incorrect configuration

I'm getting an error when trying to register Ranorex v1.3. This occured on several machines, however I was able to get one registration to succeed. Each machine is similar in configuration so I'm not sure why one worked, while previous ones did not. Dell Core2's Windows XP, SP2 2Gb Ram Cheers Gryphy...
by Gryphyn
Thu Jun 28, 2007 12:39 am
Forum: Automation API
Topic: Missing GetFocus() method
Replies: 7
Views: 3788

by Gryphyn
Thu Jun 28, 2007 12:37 am
Forum: Bug Reports
Topic: Missing GetFocus() method
Replies: 3
Views: 4099

OK. The method is not missing, it's changed to a static method. --Intellisense couldn't/can't find it. but this is still a change from previous versions where GetFocus() was a valid method for any Form object. This now means that my code needs to bring the appropriate FORM into focus, before checkin...
by Gryphyn
Tue Jun 26, 2007 11:53 pm
Forum: Bug Reports
Topic: Missing GetFocus() method
Replies: 3
Views: 4099

Missing GetFocus() method

xPost

Ranorex 1.2
.Net 2.0

I've just upgraded to Ranorex 1.2
When I go to recompile I get an error for every instance of
"Control <control> = <Form>.GetFocus()"

Investigation shows that this method is missing from the latest release.
:cry:

Cheers
Gryphyn
by Gryphyn
Tue Jun 26, 2007 11:03 pm
Forum: Automation API
Topic: Missing GetFocus() method
Replies: 7
Views: 3788

Missing GetFocus() method

Ranorex 1.2
.Net 2.0

I've just upgraded to Ranorex 1.2
When I go to recompile I get an error for every instance of
"Control <control> = <Form>.GetFocus()"

Investigation shows that this method is missing from the latest release.
:cry:

Cheers
Gryphyn
by Gryphyn
Tue Dec 12, 2006 10:58 pm
Forum: Automation API
Topic: Buttons within Buttons
Replies: 6
Views: 5416

I think you should wait a little bit after clicking the Next button on the first wizard page (until the next page is ready). The pages have the same title text and the same class name, so you should search every single page after cllicking the Next button. I could automate the wizard as follows: (C...
by Gryphyn
Sun Dec 10, 2006 11:33 pm
Forum: Automation API
Topic: Buttons within Buttons
Replies: 6
Views: 5416

Samples sent.
Let me know if you need more.

Cheers
Gryphyn
by Gryphyn
Sun Dec 10, 2006 9:46 pm
Forum: Automation API
Topic: Buttons within Buttons
Replies: 6
Views: 5416

This is the point. The Find() functions are not finding the child-buttons. I've done a full cascade of Element.FindChild(n) into Element.FindChild(n) traversing from the main-form to every accessable child. The Radio buttons do not appear in the list. Even finding the 'container' button, then checki...
by Gryphyn
Fri Dec 08, 2006 1:14 am
Forum: Automation API
Topic: Buttons within Buttons
Replies: 6
Views: 5416

Buttons within Buttons

Ranorex 1.0.0 (.Net2.0) In their infinite wisdom, our developers have created a form with Buttons as children of another button. RanorexSpy can show me details of the child buttons, however the libraries cannot/donot detect this situation. As it's our license agreement form, this poses a major probl...
by Gryphyn
Fri Dec 08, 2006 1:00 am
Forum: Bug Reports
Topic: Form variable losses context
Replies: 2
Views: 4472

Jenö Thanks for the reply. I've done some futher investigation. It seems to be restricted to MSI installation dialogs. I'm not sure if it is MSI itself, or 'Wise Installer' (which we wrap around a MSI install) FormClass = "MsiDialogCloseClass"; *apparently there are different instances of this class...
by Gryphyn
Thu Dec 07, 2006 12:25 am
Forum: Bug Reports
Topic: Form variable losses context
Replies: 2
Views: 4472

Form variable losses context

Ranorex .Net2.0 / C# I'm using a basic C# class to manage automation of dialogs. Here's the simplified version. using System; using Ranorex; namespace SmokeTest.Expose { public class BaseClass // named as required { private const String FormClass = "<class>"; // As appropriate private readonly Form ...