Search found 11 matches

by irem
Wed Jul 11, 2012 2:26 pm
Forum: General Questions
Topic: Mouse Cursor Hand Symbol
Replies: 2
Views: 2280

Re: Mouse Cursor Hand Symbol

Hi Markus,

I tried this API before. I had been used it's CursorName value. However it always return "Custom", so it is not enough for me. I would like to get mouse's hand symbol information (hand or closed hand symbol).

I don't know how I can access it.

Thanks.
by irem
Mon Jul 09, 2012 12:25 pm
Forum: General Questions
Topic: Ranorex - BackColor attribute
Replies: 2
Views: 1946

Ranorex - BackColor attribute

Hello, I would like to get radio button's BackColor attribute. I don't know it's usage clearly. I tried by this way : Color color = radioButton.As<Ranorex.Control>().GetPropertyValue<Color>("BackColor"); But this error occurs : Object reference not set to an instance of an object. What can I do ? Th...
by irem
Fri Jul 06, 2012 11:50 am
Forum: General Questions
Topic: Mouse Cursor Hand Symbol
Replies: 2
Views: 2280

Mouse Cursor Hand Symbol

Hello,

I would like to get mouse cursor symbol without using snapshot. How can I access mouse cursor's this feature?
(Mouse cursor has hand symbol or closed hand symbol ext.. )

Thanks in advance.
by irem
Wed Jun 06, 2012 7:05 am
Forum: General Questions
Topic: Ranorex - Repository Item Names
Replies: 5
Views: 2167

Re: Ranorex - Repository Item Names

Hi Markus, I will explain more clearly. There are five sliders on form (volume slider, progress slider etc.). However, I would like to access a specific slider's value by this way : var sliders = repo.FormMedia_Player.FormMedia_Player.FindChildren<Slider>(); double volumeSliderValue; for(int i = 0; ...
by irem
Mon Jun 04, 2012 6:48 am
Forum: General Questions
Topic: Ranorex - Repository Item Names
Replies: 5
Views: 2167

Re: Ranorex - Repository Item Names

Hi Markus,

I can't use your solution because I need the repository item name. So I don't know GetAttributeValue's parameter ("Name of the Attribute") ?

Thanks.
by irem
Mon Jun 04, 2012 6:42 am
Forum: General Questions
Topic: How to set slider value on Ranorex?
Replies: 2
Views: 2258

Re: How to set slider value on Ranorex?

Hi, I solved my problem. I was trying to change volume by taking forward slider's indicator. So I used this code : Indicator volumeSliderIndicator = slider.FindChild<Indicator>(); Mouse.MoveTo(volumeSliderIndicator.Element); Mouse.ButtonDown(System.Windows.Forms.MouseButtons.Left); Delay.Millisecond...
by irem
Wed May 30, 2012 7:52 am
Forum: General Questions
Topic: How to set slider value on Ranorex?
Replies: 2
Views: 2258

How to set slider value on Ranorex?

Hello,

I am trying to set slider (volumeslider) value. How can i do this ? I used :

Mouse.ButtonDown -> Mouse.MoveTo -> Mouse.ButtonUp . However, slider's new value has not been correct.

Is another way available for this problem ?

Thanks in advance.

İrem.
by irem
Wed May 30, 2012 6:40 am
Forum: Automation Tools
Topic: What is the diffence between Delay and Duration?
Replies: 4
Views: 4121

Re: What is the diffence between Delay and Duration?

Hello Chris,

Thank you again for answer. I don't have a problem about this matter. I am new on Ranorex. So I am trying to learn it properly.

Regards,

İrem.
by irem
Tue May 29, 2012 8:24 am
Forum: General Questions
Topic: Ranorex - Repository Item Names
Replies: 5
Views: 2167

Ranorex - Repository Item Names

Hello, I would like to access a repository item name with user code. How can I get a slider's repository item name ? My code is here : var sliders = repo.FormMedia_Player.FormMedia_Player.FindChildren<Slider>(); for(int i = 0; i < sliders.Count; i++) { Report.Info(string.Format("Slider Name : {0} ",...
by irem
Tue May 29, 2012 7:01 am
Forum: Automation Tools
Topic: What is the diffence between Delay and Duration?
Replies: 4
Views: 4121

Re: What is the diffence between Delay and Duration?

Hello Chris,

Thanks for your answer. I would like to ask new question about this issue. Is a problem setting duration time as 0ms ?

Best regards,
İrem.
by irem
Fri May 25, 2012 12:47 pm
Forum: Automation Tools
Topic: What is the diffence between Delay and Duration?
Replies: 4
Views: 4121

What is the diffence between Delay and Duration?

Hello,

I would like to learn means of Delay and Duration terms on Ranorex. Here is an image from my exercise :

Thanks in advance.