08-06-2008, 10:02 AM
can we parameterize drop down list values?
|
can we parameterize drop down list values?
|
|
08-06-2008, 10:02 AM
can we parameterize drop down list values?
08-06-2008, 10:38 AM
Yes you definitely can.
03-20-2009, 12:27 AM
how to use all the values from the drop down list
03-21-2009, 01:25 PM
'For Combo Box
Code: co=window("Flight Reservation").WinComboBox("Fly From:").GetItemsCount
msgbox co
For i=0 to co-1
val=window("Flight Reservation").WinComboBox("Fly From:").GetItem(i)
print val
Next' For WinList/Dropdown List Code: itco=dialog("Flights Table").WinList("From").GetItemsCount
msgbox itco
For i=0 to itco-1
val=dialog("Flights Table").WinList("From").GetItem(i)
msgbox val
Next |
|
« Next Oldest | Next Newest »
|
| Possibly Related Threads… | |||||
| Thread | Author | Replies | Views | Last Post | |
| Need to verify the drop down values based on condition | santhoshmscsoftware | 1 | 3,455 |
05-04-2016, 11:28 PM Last Post: supputuri |
|
| Drag and drop issue | excellentpawan123 | 0 | 3,052 |
01-13-2015, 05:04 PM Last Post: excellentpawan123 |
|
| Drop down list class is a link | thotamurali | 2 | 4,810 |
08-22-2014, 05:48 PM Last Post: thotamurali |
|
| parameterize Excel Sheet Name in SQL | bjitsidhu | 0 | 3,244 |
07-20-2014, 08:34 AM Last Post: bjitsidhu |
|
| Selecting values from drop down using QTP. | prempujaripati | 2 | 47,610 |
06-26-2014, 06:06 PM Last Post: rasmirani |
|