Search found 5 matches

by vraju
Tue Nov 27, 2007 6:48 pm
Forum: Automation API
Topic: Bug in recognising controls by ID
Replies: 1
Views: 3410

Bug in recognising controls by ID

I have a tabbed dialog. Two of the tabs have a button control with the same name. Resource ID for each of these controls differs. I use RxFormFindChildControlId to get handle of each of the controls by ID. The call to find button control in second tab by ID too gives the handle to instance of button...
by vraju
Tue Nov 27, 2007 6:44 pm
Forum: Automation API
Topic: Accessing controls from different tabs bug
Replies: 1
Views: 3072

Accessing controls from different tabs bug

I used element functions to identify controls under each tab from Tabbed dialog. I used RxElementFindChild with role as ROLE_SYSTEM_DIALOG. I could see the number children of this role was equal to the number tabs. But When I try to access the children from each of these Dialogs I always get childre...
by vraju
Tue Nov 20, 2007 1:23 am
Forum: Automation API
Topic: Recognising picture control on a Dialog
Replies: 1
Views: 4617

Recognising picture control on a Dialog

I Use Ranorex C++.

I have a static picture control in a dialog. I would like to grab the Picture and store it for validation. How do I capture and save? Is this saved as .bmp?

Thanks,
Venkat.
by vraju
Sat Jun 16, 2007 12:22 pm
Forum: Automation API
Topic: Select non-english data in a combobox
Replies: 3
Views: 3658

Yes. I have to select an item from a COMBO box, which can be either Korean, Japanese, Thai, Spanish or any other world language. My current code: [i]hComboBox = RxFormFindChildControlId(Parent, ControlID); if( hComboBox == GNTF_NULL) { return ERR_NotFound; } if(-1 == RxComboBoxSetSelectedText(hCombo...
by vraju
Thu Jun 14, 2007 2:30 am
Forum: Automation API
Topic: Select non-english data in a combobox
Replies: 3
Views: 3658

Select non-english data in a combobox

I select an item from a combo box based on data rather than index (basic requirement for me). The issue I have is now the contents of combo box has non-English or Wide Char characters. The API RxComboBoxSetSelectedText will not work as it does not support non-English/Wide Char characters. I use only...