hello...
what did i miss about this statements?
it puts a blue line on the bold property...Code:DataSet ds=new DataSet();
ds.Tables.Add("table");
sqlSelectCommand1.CommandText="select * from categories";
sqlDataAdapter1.Fill(ds.Tables("table"));
comboBox1.DataSource=ds.Tables("table");
comboBox1.DisplayMember="CategoryName";
thanx very much...
