Search found 18 matches

by Nik
Tue Jan 09, 2007 2:21 am
Forum: Automation API
Topic: Access to control in Tabcontrol
Replies: 1
Views: 4919

Access to control in Tabcontrol

Hi, I have a tabcontrol with 4 tabs in it. Each tab has listbox, combo box etc. I have to navigate in all the tabs and dump the data in each of the control. I am using Element approach but I am not able to dump the data except of the first tab. I am able to select the tabs but not able to grab the a...
by Nik
Fri Dec 22, 2006 12:11 am
Forum: Automation API
Topic: Graceful Exit
Replies: 2
Views: 4130

Graceful Exit

Just want to know if Ranorex can take care of keystrokes. When an application is running and I want to close it in the middle. So, can I specify any key combinations which I can handle in the code , so that any clean if needed can be taken care.

-Nikhil
by Nik
Fri Dec 08, 2006 11:49 pm
Forum: Automation API
Topic: Version 0.9.3 on Windows Vista
Replies: 1
Views: 3359

Version 0.9.3 on Windows Vista

Hi,
I am using Ranorex Version 0.9.3 for my GUI Automation.
I have implemented the code on Windows XP and Visual C++.

Can the same code will run on Windows Vista too?

-Nikhil
by Nik
Wed Nov 08, 2006 10:10 pm
Forum: Automation API
Topic: MATCH_SUBSTRING in RxListBoxFindString
Replies: 1
Views: 3560

MATCH_SUBSTRING in RxListBoxFindString

I am facing problem in using RxListBoxFindString with MATCH_SUBSTRING as a parameter.
int posn = RxListBoxFindString (hListControl1, "Gold", MATCH_SUBSTRING);

The function is working with MATCH_EXACT, MATCH_FROM_START.

Is this a known bug? What is the solution?

-Nikhil
by Nik
Tue Oct 31, 2006 2:05 am
Forum: Automation API
Topic: Navigation in Tree View
Replies: 1
Views: 4343

Navigation in Tree View

I want to select a file in tree view. The file is in embedded folder.
I tried using RxTreeViewSelectPath but this is not working.
Can you suggest some way of implementing this.
For e.g. I want to navigate to C:\Folder1\Folder2\ABC.txt.

I am using VC6.0 on WinXP.

-Nikhil
by Nik
Fri Oct 27, 2006 5:45 am
Forum: Automation API
Topic: Scrolling in List View
Replies: 3
Views: 5156

It worked for me.
Thanks
Nikhil
by Nik
Wed Oct 25, 2006 6:02 pm
Forum: Automation API
Topic: Scrolling in List View
Replies: 3
Views: 5156

Re: Scrolling in List View

Please read tree view as list view. Typo mistake. -Nikhil Hi, I have a List view which has around 50 item. I have to click eack item which in turn displays more information about the item. I am using the element approach to click the items in the list view. The problem is that list view does not dis...
by Nik
Wed Oct 25, 2006 12:37 am
Forum: Automation API
Topic: Scrolling in List View
Replies: 3
Views: 5156

Scrolling in List View

Hi, I have a List view which has around 50 item. I have to click eack item which in turn displays more information about the item. I am using the element approach to click the items in the list view. The problem is that list view does not display all the item. It displays around 10 items and then yo...
by Nik
Tue Oct 17, 2006 1:25 am
Forum: Automation API
Topic: Support for Asian Language
Replies: 7
Views: 4274

Ok. So is there any workaround? Can I read the Asian language characters using the handle to a control? -Nikhil I'm sorry, but Ranorex does not support characters of Asian Languages at the moment. We are currently working on some new features, you will be able to get and set a lot of new properties ...
by Nik
Fri Oct 13, 2006 12:40 am
Forum: Automation API
Topic: Support for Asian Language
Replies: 7
Views: 4274

Support for Asian Language

Hi, I just want to know if Ranorex APIs can support character of Asian Languages. For e.g. I have a list items which are in Japanese characters. So can I retrieve the Japanese text of the list item? I noticed that Ranorex APIs uses char * which I guess will not be sufficient for Asian language text....
by Nik
Fri Oct 06, 2006 11:10 pm
Forum: Automation API
Topic: Element is not working on ListView and Edit box
Replies: 1
Views: 4046

Element is not working on ListView and Edit box

Hi, The element approach of selecting item one at a time is not working on ListView and Edit. Are there any known issues or it is not supported. I am using the same code you suggested for navigating in the Listbox. The code is failing when I use if ( RxElementFindChild(&element, ROLE_SYSTEM_OUTLINE,...
by Nik
Wed Oct 04, 2006 5:57 pm
Forum: Automation API
Topic: ListView in a tab control
Replies: 2
Views: 4470

Re: ListView in a tab control

Hi, I found the solution. As per my understanding, it looks like a bug in Ranorex. I used HWND hTabControl1 = RxFormFindChildClassName(form, "SysTabControl32", 1); HWND hTree = RxFormFindChildClassName(hTabControl1, "SysTreeView32", 1); With this I get the handle to a treecontrol in the last tab. I ...
by Nik
Wed Oct 04, 2006 12:38 am
Forum: Automation API
Topic: ListView in a tab control
Replies: 2
Views: 4470

ListView in a tab control

Hi, I have a dialog box application in which I have a tab control. Each tab has a listview in it. I want to access the list view item. How to do that? Currently, I am getting handle to a main window-> Handle to a tab control -> Handle to a list view -> and calling RxListViewGetItemCount(). But the f...
by Nik
Mon Oct 02, 2006 7:35 pm
Forum: Bug Reports
Topic: Select data in a list box using index
Replies: 10
Views: 7283

OS support

Hi, Just want to know if Ranorex APIs would work with Windows 98, ME and NT 4.x. Thanks, Nikhil Try the function RxTreeViewSelectPath(), it should work with VS 6.0, but we test Ranorex only with Visual Studio 2003 and Visual Studio 2005. /// <summary> /// The function selects the specified tree-view...
by Nik
Sun Oct 01, 2006 7:15 am
Forum: Bug Reports
Topic: Select data in a list box using index
Replies: 10
Views: 7283

Re: Select data in a list box using index

hi, Listbox is now working for me. Thanks. In the tree view, if i have to select embedded folder e.g. C:\folder1\folder2\folder3. Is there a direct command or I have to go be the element way? Please advice. I appreciate your quick responses. -Nikhil Hi, I am not able to use RxListBoxSetSelectedIndex...