if (radioButton1.Checked)
{
int a;
string s = comboBox1.SelectedItem.ToString();
if (s == "30 Days")
{
a = 30;
}
if (s == "60 days")
{
a = 60;
}
else
{
MessageBox.Show(comboBox1.SelectedItem.ToString());
}
view_n_cstmr v = new view_n_cstmr(a);
v.MdiParent = this.MdiParent;
v.Show();
}
'a'(int) の値はこのコードでは影響を受けませんが、コンボ ボックスの項目が見つかりました。助けてください