private void cboListaProvincias_SelectedIndexChanged(object sender, EventArgs e) { if (cboListaProvincias.SelectedValue == null || cboListaProvincias.SelectedValue.GetType() != typeof(int)) { return; } var selectedCantones = commB.FindCantonByIdProvincia(Convert.ToInt32(cboListaProvincias.SelectedValue.ToString())); cboListaCantones.DataSource = selectedCantones; }