Search found 349 matches

by webops
Thu Nov 01, 2007 10:31 pm
Forum: Announcements and News
Topic: Ranorex V1.3.0 has been released
Replies: 0
Views: 6410

Ranorex V1.3.0 has been released

RanorexPro V1.3.0 and RanorexPremium V1.3.0 has been released. New Features: RanorexSpy and RanorexSpyPro supports CommandId Max. length of the properties in RanorexSpy has been increased New classes: ScrollBar ToolBar DataGrid Element caching can be disabled for dynamically generated elements Invis...
by webops
Thu Sep 27, 2007 3:28 pm
Forum: Automation API
Topic: Using .NET assembly for Reusable functions in Ranorex
Replies: 1
Views: 3364

Please try the following:

Copy your application and the RanorexLibrary.dll into the Bin\Net2.0-Pro directory of the Ranorex installation.
(All needed Ranorex components are in this directory).

Start your application.

Jenö
Ranorex Team
by webops
Sun Sep 23, 2007 4:34 pm
Forum: General Questions
Topic: Lots os Software testing related stuff
Replies: 1
Views: 3291

Please post here only Ranorex related questions.

Gabor
Ranorex Team
by webops
Fri Sep 21, 2007 3:15 pm
Forum: Automation API
Topic: Accessibility BUG?
Replies: 5
Views: 5667

Here my sourcecode, a command line application: #include "stdafx.h" #include "RanorexCore.h" int _tmain(int argc, _TCHAR* argv[]) { RxSetSleepTime(150); RxMouseSetMoveTime(500); // Finding form by titel HWND form = RxFormFindTitle("FollowUpXpert - DEMO VERSION"); if ( form == 0 ) { printf(" ERROR: A...
by webops
Fri Sep 21, 2007 2:54 pm
Forum: Automation API
Topic: Accessibility BUG?
Replies: 5
Views: 5667

Does it work on yours? Yes, I tried also the Start and Stop buttons, they all work in my machine. I use your demo version and have an english Windows XP. // Find and click the Start button ElementStruct startButton; bRet = RxElementFindChild(&element, ROLE_SYSTEM_PUSHBUTTON, "Start", NULL, &startBu...
by webops
Fri Sep 21, 2007 12:54 pm
Forum: Automation API
Topic: Accessibility BUG?
Replies: 5
Views: 5667

Please try the following code: (Thank you for the application and for the good description) // Finding form by titel HWND form = RxFormFindTitle("FollowUpXpert - DEMO VERSION"); if ( form == 0 ) { printf(" ERROR: Application not found\n"); exit(1); } // Find the T O O L B A R printf("Toolbar\n"); HW...
by webops
Thu Sep 20, 2007 5:17 pm
Forum: Automation API
Topic: TreeView control
Replies: 1
Views: 3321

You can find a sample for a TreeView in RanorexVS2005Sample2.
Please check also the other samples in the Ranorex\Samples directory.

Jenö
Ranorex Team
by webops
Thu Sep 20, 2007 1:30 pm
Forum: Bug Reports
Topic: Failure in Update-Behaviour for AccessibleObjects
Replies: 1
Views: 3018

It seems to be a problem in the Element cache functions, we will check this issue for the next version. Please try the following workaround in V1.2: 1. Generate a textfile with the name Ranorex.ini 2. Insert the following text: [General] ElementCacheSize=4 3. Copy the file into the Ranorex Bin direc...
by webops
Thu Sep 20, 2007 11:28 am
Forum: Bug Reports
Topic: Bug in table-cell editing
Replies: 11
Views: 4098

It seems to be a problem in the Element cache functions, we will check this issue for the next version. Please use the following workaround in V1.2: 1. Generate a textfile with the name Ranorex.ini 2. Insert the following text: [General] ElementCacheSize=4 3. Copy the file into the Ranorex Bin direc...
by webops
Tue Sep 18, 2007 8:36 pm
Forum: Bug Reports
Topic: Bug in table-cell editing
Replies: 11
Views: 4098

...evaluated with a Xceed-gridcontrol. With this code, i can produce the behaviour
I tried to reproduce this issue with the Xceed-gridcontrol samples Validation, MasterDetail or LiveExplorer but i couldn't.

How can i reproduce the problem with the Xceed samples?

Jenö
Ranorex Team
by webops
Tue Sep 18, 2007 12:23 pm
Forum: Bug Reports
Topic: Bug in table-cell editing
Replies: 11
Views: 4098

It can be a bug, but we cannot reproduce it with Microsoft controls or applications. I tried the following code with the Microsoft DataGridView Control sample: You can download the sample application from: http://msdn2.microsoft.com/en-us/library/1x64c23x.aspx Control dataGridView1 = form.FindContro...
by webops
Tue Sep 18, 2007 10:55 am
Forum: Bug Reports
Topic: Bug in table-cell editing
Replies: 11
Views: 4098

It can also be a timing problem, the tested application runs in an other process.
Please try to wait a little bit after DoDefaultAction(), to create an edit control takes some time.

el.DoDefaultAction(); //Edit
Application.Sleep(500);

Jenö
Ranorex Team
by webops
Mon Sep 17, 2007 9:59 pm
Forum: Bug Reports
Topic: Bug in table-cell editing
Replies: 11
Views: 4098

I checked the XCeed-gridcontrol with the XceedGridLiveExplorer.exe. I think not all elements of the grid control supports accessibility. Please post me the steps i need to reproduce this issue with the XceedGridLiveExplorer.exe. (I realised that in some cases you cannot complete an edit operation wi...
by webops
Mon Sep 17, 2007 3:42 pm
Forum: Announcements and News
Topic: Ranorex grows
Replies: 0
Views: 6662

Ranorex grows

Ranorex grows The formation of the Ranorex GmbH including the expansion of the Ranorex Team creates new possibilities to enlarge the range of Ranorex products. With the help of a capital investor Ranorex continues to provide the best software test framework for creating professional test systems ba...
by webops
Sat Sep 15, 2007 7:47 am
Forum: Bug Reports
Topic: Bug in table-cell editing
Replies: 11
Views: 4098

I couldn't reproduce this issue with the Microsoft DataGridView Control sample. You can download the sample application from: http://msdn2.microsoft.com/en-us/library/1x64c23x.aspx The following code works for me: // Find the element by name Element contactRow7 = dataGridView1.Element.FindChild(Role...