P 
		
								
				
				
			
		Phil Barber
I am populating a drop dow list for a recordset using a reader:
while(DR.Read())
CmbConv.Items.Add(DR["Field1"].ToString() + " "+DR["Field2"].ToString());
Is there a way to format the drop down list so that it would appear to have
two columns?
Phil
				
			while(DR.Read())
CmbConv.Items.Add(DR["Field1"].ToString() + " "+DR["Field2"].ToString());
Is there a way to format the drop down list so that it would appear to have
two columns?
Phil