這是在列表框中的數據,從數據庫我需要一個組合框的選擇項添加到選定項目結束在列表框中
Johnie Black
Sarah Smith
Carol Willis
Maggie Dubois
這是在組合中的數據專欄
(M)
(F)
我要選擇列表框中的名稱,然後,當我繼續從下拉框中選擇性別我選擇必須添加到所選
例如名稱末尾的值。
卡羅爾·威利斯(F)
這是我曾嘗試:
private void Form1_Load(object sender, EventArgs e) { this.namesTableAdapter.Fill(this.namesDataSet.names);
comboBox1.Items.Add("(M)");
comboBox1.Items.Add("(F)");
comboBox1.SelectedIndex = 0;
listBox1.SelectedIndex = 0;
}
//The code above loads the items into the comboBox
//For the lisbox I connected to the database using the option "Use Data Bound Items"
任何形式的幫助將不勝感激
好的,那麼你有什麼嘗試? – BugFinder
我試過comboBox.SelectedValue = listBox1.SelectedValue – Destiny
我也試過使用SelectedIndexChanged事件,但沒有任何工作 – Destiny