我正在开发一个项目,在其中编写了将数据添加到listbox1的代码。
我想将MS Access中的数据加载到listbox2中。
我不知道如何提出请求。
我的代码:
}`OleDbCommand piece = new OleDbCommand("Select * from ListePiece lp inner join NomUEP np on lp.ID = np.ID where nomuep= '" + listBoxUEP.SelectedItems + "' ;",connection);
reader = piece.ExecuteReader();
while (reader.Read())
{
listBoxPiece.Items.Add(reader);
}`
如果我在列表框UEP中选择UEP1,其中包含(UEP1,UEP2,UEP3) 我需要在UEP1中展示 ForListbox2