Search found 13 matches

by AFI
Wed Feb 24, 2016 8:18 am
Forum: General Questions
Topic: Funny
Replies: 21
Views: 3318

Re: Funny

I'm looking for and I will find.
by AFI
Tue Feb 23, 2016 4:19 pm
Forum: General Questions
Topic: Funny
Replies: 21
Views: 3318

Funny

Funny Easter egg. Now I know who always helps me.
by AFI
Thu Jan 21, 2016 9:21 am
Forum: Automation Modules and Examples
Topic: CamStudioPortable
Replies: 0
Views: 6013

CamStudioPortable

Hello, Here, I have a small library for the control of CamStudioPortable. The library has 3 RecordModule to start, stop and close CamStudioPortable. The startup path for CamStudioPortable can be specified in the module StartRecord. By default, this is set to "C:\Temp\CamStudioPortable\CamStudioPorta...
by AFI
Fri Dec 11, 2015 1:39 pm
Forum: Object Identification and Technologies
Topic: Unable to select in the cells of "MSFlexGridWndClass"
Replies: 2
Views: 2010

Re: Unable to select in the cells of "MSFlexGridWndClass"

With my grid, I have similar problems which I solved as follows:
Find the x coordinates of your column and the y coordinates of your row. Then, you can click in your cell.
You can find the coordinates as properties in the RawText
by AFI
Fri Jul 10, 2015 6:55 am
Forum: Bug Reports
Topic: Mouse-Click on item doesn't work anymore after Update 5.4.0
Replies: 9
Views: 3085

Re: Mouse-Click on item doesn't work anymore after Update 5.4.0

Quick and Dirty:
Remove Ö and search like this .//text[@caption~$StringWithoutÖ] :wink:

Seriously, can you post a Ranorex snapshot of the element?
by AFI
Thu Jul 09, 2015 3:01 pm
Forum: Bug Reports
Topic: Mouse-Click on item doesn't work anymore after Update 5.4.0
Replies: 9
Views: 3085

Re: Mouse-Click on item doesn't work anymore after Update 5.4.0

I had a similar problem. Have the error only when you start the test from the Ranorex Studio or even if you start the exe?
by AFI
Thu Jul 09, 2015 1:59 pm
Forum: Bug Reports
Topic: Mouse-Click on item doesn't work anymore after Update 5.4.0
Replies: 9
Views: 3085

Re: Mouse-Click on item doesn't work anymore after Update 5.4.0

Did you connect two or more monitors?
by AFI
Fri Jul 03, 2015 11:13 am
Forum: Automation Tools
Topic: Shortcut for Create Property
Replies: 1
Views: 1809

Shortcut for Create Property

Is there any way to "Create Property" using keyboard shortcuts in the IDE?
by AFI
Tue Jun 09, 2015 2:09 pm
Forum: General Questions
Topic: Not able to view my report properly
Replies: 6
Views: 1786

Re: Not able to view my report properly

If you use IE, set IE Security Settings to default.
by AFI
Mon May 11, 2015 6:54 am
Forum: General Questions
Topic: Working with Excel
Replies: 1
Views: 1388

Re: Working with Excel

Here you can find a tutorial from Microsoft:
https://msdn.microsoft.com/en-us/librar ... .100).aspx

This is for Word / Excel 2007. Other Office versions are very similar.
by AFI
Tue May 05, 2015 9:08 am
Forum: How To …
Topic: How to access the column names of the test data files
Replies: 1
Views: 2754

Re: How to access the column names of the test data files

Try this:

Code: Select all

Ranorex.Core.Testing.ITestCase itc = Ranorex.Core.Testing.TestCase.Current;
Ranorex.Core.Data.ColumnCollection columnc = itc.DataContext.Parent.CurrentRow.Owner.Columns;
foreach(Ranorex.Core.Data.Column col in columnc){
	Report.Info(col.Index + " " + col.Name);
}
by AFI
Tue Feb 24, 2015 8:52 am
Forum: Automation Discussions
Topic: VB6 presentation speed up
Replies: 0
Views: 2328

VB6 presentation speed up

Hello,

We test a VB6 application here. Therefore, a question to all users with a VB6 application.
Do you have your system optimized to show the application is fast? I mean the representation of forms and controls etc.