Hi,
I try populate combobox in windows mobile 5.0 pocket pc but i have this error:
Value does not fall within the expected range.
the datatable return from dataset on the webservice:
the method is:
public void loadComboBox(ref ComboBox ComboBoxGen, string DisplayText, string Value,DataTable dt)
{
ComboBoxGen.DataSource = dt;
ComboBoxGen.DisplayMember = DisplayText;
ComboBoxGen.ValueMember = Value;
}