Search found 20 matches

by ranettix
Fri Sep 09, 2011 8:27 pm
Forum: Automation API
Topic: Define a Character Code Set
Replies: 3
Views: 1966

Re: Define a Character Code Set

Ranorex writes texts into GUI elements like list boxes, buttons, menus, title bars etc. The question simply is which character set is used for writing these texts. UTF-8 (Unicode Standard) for example defines 1-byte characters as used in the ASCII character set, but also characters using more than 1...
by ranettix
Wed Sep 07, 2011 1:07 pm
Forum: Automation API
Topic: Define a Character Code Set
Replies: 3
Views: 1966

Define a Character Code Set

Is it possible to define coding like UTF-8, UTF-16 or ASCII with Ranorex?
I'm using an implementation with Ranorex 1.2.0.
by ranettix
Wed Oct 28, 2009 5:56 pm
Forum: Automation API
Topic: Cannot access Button Control
Replies: 3
Views: 2603

Re: Cannot access Button Control

Since it is the 3rd instance, I took 3, which failed. 4 does work.
by ranettix
Mon Oct 26, 2009 11:20 pm
Forum: Automation API
Topic: Cannot access Button Control
Replies: 3
Views: 2603

Cannot access Button Control

When using the FindChildClassName method, there seems to be a problem with similar class names, as in the following example: form = RxFormFindTitle("My Title Something", MATCH_FROM_START, TRUE, 1000); button = RxFormFindChildClassName(form, "TButton #4"); RxMouseMoveToControl(button); RxMouseClickCo...
by ranettix
Fri Sep 08, 2006 1:00 pm
Forum: Automation API
Topic: Text element not found when shaded
Replies: 1
Views: 3853

Text element not found when shaded

A text element is searched for with (Ranorex 0.9.3beta3): <controlname>.Element.FindChild(Role.Text, "elementname"); When the text field is editable, the element can be accessed thru Ranorex. However, when the text field is shaded, the element is not found (null is returned). This problem seems to o...
by ranettix
Thu Sep 07, 2006 9:49 am
Forum: Automation API
Topic: Element attributes differences
Replies: 6
Views: 4828

Good tip.
The astonishing experience is that the statusBarElement1 pointer
cannot be used throughout the rest of the program.

It has to be derived from StatusStrip every time it's used again (?).
by ranettix
Wed Sep 06, 2006 9:01 am
Forum: Automation API
Topic: Element attributes differences
Replies: 6
Views: 4828

With RanorexNet I can retrieve only the initial value of the statusbar pane element, in "<element-instance>.Name" (the value returned never changes). With Ranorex Spy I see the actual contents of the statusbar pane element, same as displayed in the GUI. Are there different interfaces used in Ranorex...
by ranettix
Tue Sep 05, 2006 1:40 pm
Forum: Automation API
Topic: Element attributes differences
Replies: 6
Views: 4828

Element attributes differences

Compared to the .NET C# sourcecode, I found a discrepancy: C# Source ------------ A status field is defined in C# as System.Windows.Forms.StatusBarPanel. <status-instance>.Name is a string constant. The current field value in C# is assigned to <status-instance>.Text. Ranorex ---------- The current f...
by ranettix
Tue Sep 05, 2006 10:30 am
Forum: Bug Reports
Topic: Error withToolStrip ?
Replies: 2
Views: 4179

When a Sleep of 2 or 3 seconds is added after:

toolStrip.SelectPosition(1);

the application hangs permanently (no error messages).
by ranettix
Thu Aug 31, 2006 9:23 am
Forum: Bug Reports
Topic: Exception when running VS2005 Sample 3
Replies: 7
Views: 4917

Sorry ... when runnning the sample on another computer, with Windows 2000, the error comes up also.
by ranettix
Wed Aug 30, 2006 2:06 pm
Forum: Automation API
Topic: Information about a Control
Replies: 2
Views: 4109

Yes, I would try the prerelease, if possible. Thank you.
by ranettix
Wed Aug 30, 2006 2:03 pm
Forum: Bug Reports
Topic: Error withToolStrip ?
Replies: 2
Views: 4179

Error withToolStrip ?

When executing a DataGridView table load with a Ranorex ToolStrip button, the following situation arises: 1) the button is pressed by toolStrip = form.FindToolStrip("toolbar"); ...... toolStrip.SelectPosition(1); The table is loaded into the application. But the application crashes with Unbehandelte...
by ranettix
Wed Aug 30, 2006 1:44 pm
Forum: Automation API
Topic: Execution is blocked when a new window opens
Replies: 5
Views: 4403

Thanks for your hints. Anyway, this issue came up because of a
problem with toolbar button use - I'll post a bug report about that.
by ranettix
Wed Aug 30, 2006 12:44 pm
Forum: Bug Reports
Topic: Exception when running VS2005 Sample 3
Replies: 7
Views: 4917

That was new compilation. But I just downloaded your release 0.9.3-beta1 and tried the delivered Exe - same result. Here the details: ************** Ausnahmetext ************** System.NullReferenceException: Der Objektverweis wurde nicht auf eine Objektinstanz festgelegt. bei Ranorex.Mouse.MoveToEle...
by ranettix
Wed Aug 30, 2006 10:50 am
Forum: Bug Reports
Topic: Mouse.Move returns false
Replies: 1
Views: 4178

Mouse.Move returns false

The return value is false when the function succeeds, i.e.
the mouse moves.
:?