Official way of setting the selected item of combo is using
Combo.SelectedIndex = 0; //set a number,0 indicates the first row.
However, you may want to show something like asp.net selectedItem.Text that you can actually match with your result and set it to true, In silverlight you have to do it in this way,
your class
public class ResourceType
{
public string ID { get; set; }
public string Name { get; set; }
}
1. Suppose the combo is populated that means you have added the data in this way
List<ResourceType> list = new List<ResourceType>();
foreach(var n in e.result) {
list.Add( new ResourceType() { ID = n.ID, Name= n.Name});
// [placeholder] something will happen here
}
Combo.ItemSource = list;
So to selcted a particular item like, suppose you want to select the item with name Shamrat, you do it this way
// [placeholder] [add this code there]
if (n.Name == "input") [in this case it has Shamrat]
{Combo.SelectedIndex = Combo.Items.Count -1;}
your item is selected. 
and if this post was helpful then please 'Mark as Answer' - many thanks
Sharker Khaleed Mahmud
Software Developer
(MCP,MCTS,MCPD[web])
This credits that member, earns you a point and marks your thread as Resolved so we will all know you have been helped.