Search found 14 matches

by chhb_fancy
Mon Mar 16, 2009 9:36 am
Forum: Bug Reports
Topic: Fail to call CreateAdapterForPath from time to time
Replies: 3
Views: 3138

Yes, my test application needs to access Ranorex objects from more than one thread. I have changed the code as below: public Ranorex.Form Self { get { using (new CacheSessionContext()) { return CreateAdapterForPath<Ranorex.Form>("Self", "", 5000, null); } } } public T CreateAdapterForPath<T>(String ...
by chhb_fancy
Wed Mar 04, 2009 2:06 am
Forum: Bug Reports
Topic: Fail to call CreateAdapterForPath from time to time
Replies: 3
Views: 3138

Fail to call CreateAdapterForPath from time to time

My code is as following: public class FormRepository : RepoGenBaseFolder { public FormRepository(String name, int handle, RepoGenBaseFolder appFolder) : base(name, "/form[@handle='" + handle + "']", appFolder, 5000, true) { } public FormRepository(String name, int handle) : this(name, handle, null) ...
by chhb_fancy
Mon Sep 08, 2008 1:53 am
Forum: Object Identification and Technologies
Topic: function GetFrame does not work for nested frame
Replies: 9
Views: 3773

I got it. Thank you very much. :-)
by chhb_fancy
Tue Aug 26, 2008 9:07 am
Forum: Object Identification and Technologies
Topic: function GetFrame does not work for nested frame
Replies: 9
Views: 3773

Is there any possible to fix this problem in V1.5?

I'm evaluating V1.5 and determining if we need to purchase Ranorex.

Thanks.
by chhb_fancy
Tue Aug 26, 2008 9:03 am
Forum: Bug Reports
Topic: Control.CompareImage does not work
Replies: 11
Views: 3782

Thank you very much. Alex :-)
by chhb_fancy
Tue Aug 26, 2008 6:08 am
Forum: Bug Reports
Topic: Control.CompareImage does not work
Replies: 11
Views: 3782

Thanks Alex for your response.

But how to generate the clipped image?

I couldn't find any method to do it. Do you mean that I should use the third-party tool to do so, such as Photoshop?
by chhb_fancy
Thu Aug 21, 2008 1:44 am
Forum: Object Identification and Technologies
Topic: function GetFrame does not work for nested frame
Replies: 9
Views: 3773

When will v2.0 be released?

This feature is important for me. Thanks.:-)
by chhb_fancy
Wed Aug 20, 2008 12:23 pm
Forum: Automation API
Topic: Getting the control over an Element
Replies: 3
Views: 3177

Gabor, could you also send me a beta version?

My mail: [email protected]

Thanks.:-)
by chhb_fancy
Wed Aug 20, 2008 11:50 am
Forum: Object Identification and Technologies
Topic: function GetFrame does not work for nested frame
Replies: 9
Views: 3773

Is there any update for this? Thanks. :-)
by chhb_fancy
Tue Aug 19, 2008 10:08 am
Forum: Bug Reports
Topic: Control.CompareImage does not work
Replies: 11
Views: 3782

Thanks Alex for your answer.

Now is working. :-)

If I just wanna compare a rectangle of the image, not entire image.

for example:
Entire image rect: (2, 114) - (1261, 970) 1259 x 856
I wanna verify rect: (100, 100) - (200, 200) 100x 100

Is there any method for this? Any help is appreciated.
by chhb_fancy
Tue Aug 19, 2008 1:56 am
Forum: Bug Reports
Topic: Control.CompareImage does not work
Replies: 11
Views: 3782

Thanks Skarlso for your response.

Is there any solution for this?
by chhb_fancy
Mon Aug 18, 2008 2:18 am
Forum: Bug Reports
Topic: Control.CompareImage does not work
Replies: 11
Views: 3782

Control.CompareImage does not work

The following is my code: Form Calculator = Application.FindFormTitle("calculator", SearchMatchMode.MatchExact,true,5000); if(Calculator != null){ Calculator.CaptureImage("D:\\RanorexProject\\Test\\test.bmp"); bool bResult = Calculator.CompareImage("D:\\RanorexProject\\Test\\test.bmp"); } But the re...
by chhb_fancy
Fri Aug 15, 2008 3:13 am
Forum: Object Identification and Technologies
Topic: function GetFrame does not work for nested frame
Replies: 9
Views: 3773

Is there anyone helping me out?
by chhb_fancy
Thu Aug 14, 2008 8:14 am
Forum: Object Identification and Technologies
Topic: function GetFrame does not work for nested frame
Replies: 9
Views: 3773

function GetFrame does not work for nested frame

I try to get nested frame in WebDocument class, but I failed. For example, there are two frames in the top document, and I can get WebDocument object just like as below: //suppose topDoc is a instance for top document WebDocument first = topDoc.GetFrame(0); If there are also two frames in the first ...