what are the various type of accounts in gl? And at what point is the type of account identified? And explain the nature of accounts?
How many types of data structure are there?
How to join three sources using joiner? Explain though mapping flow.
What are the differences between table controls and step loops?
When to use rspec and when to use cucumber?
what is csdl?
What happens if I delete a category in wordpress?
Name the method of servicebase class?
What is a deferred tax asset and what is its purpose?
What is a table in microsoft word?
What does 7/9*9 equal ? a) 1 b) 0.08642 c) 0
why use functions a) writing functions avoids rewriting the same code over and over b) using functions it becomes easier to write programs and keep track of what they are doing c) a & b d) none of the above
Explain about control table?
Explain the flow of information between the 5 main layers of drupal?
Hi, I have 2 dropdown listboxes called region and city/area. It needs to select one region(Santa Clara) and one city/Area (Sunnyvale).So I put this in the for loop and I am storing the Items in the variable called itemname. The regions value will get changed,so I used reg expression for this regions. This is my code Browser("MLSListings.com").Page("MLSListings.com").Link("ยป County/Area").Click Browser("MLSListings.com").Page("MLSListings.com").WebList ("regions").Check CheckPoint("regions") ListSize=Browser("MLSListings.com").Page ("MLSListings.com").WebList("regions").GetTOProperty("items count") For i = 1 To ListSize-1 Itemname =Browser("MLSListings.com").Page ("MLSListings.com").WebList("regions").GetItem(i+1) Browser("MLSListings.com").Page("MLSListings.com").WebList ("regions").Select Itemname ................. If I run the script,I am getting the following error, Cannot identify the specified item of the regions object. Confirm that the specified item is included in the object's item collection. Any Help? Thank you, Uma