Search found 24 matches

by tkondal
Mon Aug 06, 2007 3:17 pm
Forum: Automation API
Topic: Property Grid: Get items by index
Replies: 1
Views: 4369

Property Grid: Get items by index

Hi,
I would like to know if it is possible to get the items of a property grid by index instead of by name.

Thanks.
by tkondal
Fri Mar 30, 2007 4:44 pm
Forum: Automation API
Topic: ApplicationGetNext()
Replies: 1
Views: 4122

ApplicationGetNext()

Hi, I am trying to use the ApplicationGetNext() function but keep on getting incorrect argument errors. I am passing it a valid handle as a parameter: hWnd = RanorexPython.ApplicationGetFirst(); RanorexPython.ApplicationGetNext(hWnd); What is the correct parameter list, and could you please update t...
by tkondal
Fri Mar 30, 2007 4:23 pm
Forum: Bug Reports
Topic: Typing errors in documentation file
Replies: 11
Views: 3942

RanorexPython.ApplicationGetFirst

RanorexPython.ApplicationGetFirst

The documentation is misleading, the return type should be handle if successful, and 0 if not.
by tkondal
Mon Mar 26, 2007 8:49 pm
Forum: General Questions
Topic: RanorexSpy Feature Request
Replies: 1
Views: 3159

RanorexSpy Feature Request

Hi, would it be possible to add the following to the RanorexSpy tool (the free version): - Transparency Level: User can set the transparency of the Spy window. This will allow users to see their entire application even when the Spy window is on top. - Mouse Click Simulation: Possibility to simulate ...
by tkondal
Mon Mar 26, 2007 8:16 pm
Forum: Bug Reports
Topic: Typing errors in documentation file
Replies: 11
Views: 3942

TreeViewGetSelectedItem

In the doc for Ranorex.TreeViewGetSelectedItem, it says:
The handle of the next item if successful,...

I'm guessing this should be :
The handle of the selected item if successful,...
by tkondal
Mon Mar 26, 2007 7:26 pm
Forum: Automation API
Topic: TreeViewSelectItem
Replies: 1
Views: 3280

TreeViewSelectItem

Hi, I am having trouble using the Ranorex.TreeViewSelectItem() function. I keep on getting an argument error in Python. I am passing it two arguments (a handle to my treeview and another handle to my treeview item). Ranorex.TreeViewSelectItem(hTreeView, hTreeViewRoot); According to the docs, that's ...
by tkondal
Mon Mar 26, 2007 7:21 pm
Forum: Bug Reports
Topic: Typing errors in documentation file
Replies: 11
Views: 3942

Ranorex 1.1 Doc Typo

I noticed in the documentation for 1.1 that there is a "File List" item with "RanorexPython.cpp" in it; is this supposed to be there?

Also, the entry for "Menu Functions" has a ".n" appended to it.
by tkondal
Mon Mar 26, 2007 7:09 pm
Forum: Bug Reports
Topic: Typo in Ranorex 1.1 installer
Replies: 1
Views: 3355

Typo in Ranorex 1.1 installer

Hi,
I noticed on the last screen of the installer for Ranorex 1.1, it says "Open Shorcuts" instead of "Open Shortcuts"; there's a "t" missing.

Keep up the good work, I've been using Ranorex since 0.9.4 ; the product is great so far.
by tkondal
Tue Feb 06, 2007 4:54 pm
Forum: Bug Reports
Topic: Typing errors in documentation file
Replies: 11
Views: 3942

Another one that caused me to spend a day on my script... MouseClickElement(): "If the function succeeds, the return value is zero, otherwise the return value is an error code. " In my case, when the function succeeds, it returns 1, and when it fails, it returns 0. I have noted that there are many i...
by tkondal
Fri Feb 02, 2007 7:02 pm
Forum: Bug Reports
Topic: Typing errors in documentation file
Replies: 11
Views: 3942

Here's another one in the ButtonCheck() and ButtonUncheck() docs:

If the button could be ckecked the return value is True, otherwise False.

and...

If the button could be unckecked the return value is True, otherwise False.
by tkondal
Fri Jan 26, 2007 7:29 pm
Forum: Bug Reports
Topic: Typing errors in documentation file
Replies: 11
Views: 3942

I also noted that the documenation for "ControlSendKeys" refers to the "SendKeys" method instead of "ControlSendKeys".
by tkondal
Fri Jan 26, 2007 7:28 pm
Forum: Bug Reports
Topic: Typing errors in documentation file
Replies: 11
Views: 3942

Typing errors in documentation file

Here's a typing error that I found in the documentation when looking at the doc for "ControlSendKeys": "To send keyboard characters that are comprised of a regular keystroke in combination with a SHIFT, CTRL, or ALT, crete a compound " "crete" should be "create". Note: Maybe this thread should be us...
by tkondal
Wed Nov 29, 2006 2:59 pm
Forum: Bug Reports
Topic: Documentation
Replies: 1
Views: 3597

Documentation

Ranorex.MouseSetMoveTime() is missing from the documentation.
by tkondal
Wed Nov 29, 2006 2:50 pm
Forum: General Questions
Topic: DLL Registrations
Replies: 3
Views: 4836

Actually, I have been using RanorexPython with custom paths. Here are the steps in Python: 1. Create a .pth file in C:\Python24\Lib\site-packages e.g. C:\Python24\Lib\site-packages\Ranorex.pth 2. Edit the file Ranorex.pth with a text editor and add the path to the folder containing the Ranorex DLLs....
by tkondal
Tue Nov 21, 2006 11:26 pm
Forum: Automation API
Topic: Calling native methods of an object
Replies: 9
Views: 5312

Thank you for the reply. Concering the Mercury QuickTestPro feature that I was mentioning, it allows one to call an object's function by doing something like: GetCustomComboBox("MyCombo").Object.CustomFunction(arg1, arg2, ...) e.g. GetCustomComboBox("MyCombo").Object.set_SelectedItem(arg1, arg2, ......