J
John Murray
can anyone tell me why this same code works on a normal windows
platform but when used in compact framework application produces an
argument exception on setting either the valuemember or displaymember
ds = new DataSet();
string filePath = @"\Program Files\crp3\airf2.xml";
ds.ReadXml(filePath);
this.comboBox1.DataSource=ds;
this.comboBox1.ValueMember="airf2.ICAO";
this.comboBox1.DisplayMember="airf2.AIRFIELD";
TIA
John Murray
platform but when used in compact framework application produces an
argument exception on setting either the valuemember or displaymember
ds = new DataSet();
string filePath = @"\Program Files\crp3\airf2.xml";
ds.ReadXml(filePath);
this.comboBox1.DataSource=ds;
this.comboBox1.ValueMember="airf2.ICAO";
this.comboBox1.DisplayMember="airf2.AIRFIELD";
TIA
John Murray