Search found 29 matches

by rcd.guerra
Thu Jul 30, 2009 6:52 pm
Forum: General Questions
Topic: Studio deleting repository items
Replies: 1
Views: 2031

Studio deleting repository items

Hi there, We’re having a BIG issue with the Studio. We have a repository. Then, we edit it by adding some new items, compile the solution run and test is executed correctly. Then, we run the solution again and the compilation fails because the previously added items were removed from the repository…...
by rcd.guerra
Thu Jul 30, 2009 2:28 pm
Forum: Automation Tools
Topic: Having multiple repositories at the same time
Replies: 1
Views: 2429

Having multiple repositories at the same time

Hi there,

Is it possible to use more than one repository at the same time to fill the steps in the Studio’s Recorder View ?
Or at least a fast way to change between repos without to open the FileDialogBrowser ?


Thanks in advance!

Cheers,
Ricardo
by rcd.guerra
Tue Apr 28, 2009 9:32 am
Forum: General Questions
Topic: .rxrep and .rxrec files in Visual Studio
Replies: 6
Views: 2983

Support Team,

any tip on this?

In Visual Studio when i manually add the .rx files they are included.

But i wanted them to be grouped as partial classes like this (marked with red rectangles).

Thanks in advance!

Cheers,
Ricardo
by rcd.guerra
Tue Apr 28, 2009 8:59 am
Forum: Bug Reports
Topic: Data components in the windows form designer
Replies: 2
Views: 3020

Ron,

thanks a lot!

That solved the issue.


Cheers,
Ricardo
by rcd.guerra
Mon Apr 27, 2009 5:14 pm
Forum: Bug Reports
Topic: Data components in the windows form designer
Replies: 2
Views: 3020

Data components in the windows form designer

Hello there, i think this is an issue as i could not find a workaround to the problem. Meaning no components from the Data group (BindingNavigator, BindingSource, DataNavigator, DataGrid, DataGridView, DataSet and DataView) are being displayed. When i go into the "Configure Sidebar" form i see that ...
by rcd.guerra
Mon Apr 27, 2009 3:27 pm
Forum: General Questions
Topic: Test suite management
Replies: 2
Views: 2502

Thanks for your tip Christoph.
by rcd.guerra
Mon Apr 27, 2009 12:34 pm
Forum: General Questions
Topic: .rxrep and .rxrec files in Visual Studio
Replies: 6
Views: 2983

Thanks for your reply MM-P. When i add the existing items the files are not being grouped, that is, shown as one with the plus sign before the tree item. That's the issue. I don't want to have separate files being displayed even though i know the .cs is generated from the .rxrep. I wouldn´t recommen...
by rcd.guerra
Mon Apr 27, 2009 11:32 am
Forum: General Questions
Topic: Test suite management
Replies: 2
Views: 2502

Test suite management

Just wondering,

Will Ranorex provide test suite management features like test battery execution ?

Why this is not default in an automation tool ?

Cheers,
Ricardo
by rcd.guerra
Mon Apr 27, 2009 10:56 am
Forum: General Questions
Topic: .rxrep and .rxrec files in Visual Studio
Replies: 6
Views: 2983

.rxrep and .rxrec files in Visual Studio

Hello there, i want to have this files in Visual Studio in order to open them with the proper tools (Spy and Recorder). The issue is that i cant group the files with its corresponding class (as partial classes are). If i opened a Ranorex project in VisualStudio the files are displayed properly but i...
by rcd.guerra
Sat Apr 18, 2009 5:35 pm
Forum: General Questions
Topic: Multiple repositories
Replies: 3
Views: 2559

What do you mean with? Quote: For switching between repo's i would need to reference the wanted property from the specified repo class without having to change the BasePath right ? What i meant with this is the following: Lets say i have two repository classes, BaseControlRepository and ChildContro...
by rcd.guerra
Thu Apr 16, 2009 11:55 am
Forum: General Questions
Topic: Multiple repositories
Replies: 3
Views: 2559

Multiple repositories

Hello there, we have a large base of UserControls that derive from a BaseControl. We are planning to have a repository for the BaseControl and one per each child control. We think having separate repositories is better for maintenance. What is your opinion about this ? For switching between repo's i...
by rcd.guerra
Wed Apr 15, 2009 9:55 pm
Forum: General Questions
Topic: Just wanted to say Thank You
Replies: 4
Views: 2680

I second that Atom!

The support team has been very valuable.

Thanks!

Cheers,
Ricardo
by rcd.guerra
Wed Apr 15, 2009 5:05 pm
Forum: General Questions
Topic: Ranorex 2.0 and Controls
Replies: 14
Views: 5179

Its very strange, we tried in a clean solution and it works correctly. Thanks! When we spy the element, its ControlType is the correct (ChartFX.WinForms.Chart) but in the Repository the element is a Ranorex.Unknown. For calling the InvokeMethod() we need a Ranorex.Control. How can we convert a Ranor...
by rcd.guerra
Tue Apr 14, 2009 6:58 pm
Forum: General Questions
Topic: Ranorex 2.0 and Controls
Replies: 14
Views: 5179

Alex, You should not be passing anything to the GetAxisXTitle method, you simply call chart.InvokeRemotely(GetAxisXTitle); where chart is a Ranorex.Control. What i wanted to ask was if the GetAxisXTitle() signature was correct. The first parameter is "System.Windows.Forms.Control control". Is this c...
by rcd.guerra
Tue Apr 14, 2009 4:15 pm
Forum: General Questions
Topic: Ranorex 2.0 and Controls
Replies: 14
Views: 5179

I assume that in your GetAxisXTitle method the chart variable is null (did you pass the element corresponding to the right control?) and that's why a NullReferenceException is raised. Well, it seems this exception is thrown inside the delegate. How can i debug the code inside the delegate method as...