Aug 9, 2004 #1 pitamber Programmer Apr 10, 2003 15 US hi, I want folowing data to appear as 3 col in my dropdown eg id frmDate Todate 1 3/5/2004 4/5/2004 2 6/7/2004 3/5/2004 i mean with proper formating
hi, I want folowing data to appear as 3 col in my dropdown eg id frmDate Todate 1 3/5/2004 4/5/2004 2 6/7/2004 3/5/2004 i mean with proper formating
Aug 10, 2004 Thread starter #2 pitamber Programmer Apr 10, 2003 15 US Is it possible to format data into 3 coloumn inside dropdown list box Upvote 0 Downvote
Aug 10, 2004 #3 Modica82 Technical User Jan 31, 2003 410 GB I Am not to sure if its possible to do it exactly how you would like it, not without some third party controls anyway. you could build a big string in the DataTextField value of the DropDownList. e.g. ddl1.DataTextField = "Col1" + " - " + "Col2" Hope that is helpful, Rob Upvote 0 Downvote
I Am not to sure if its possible to do it exactly how you would like it, not without some third party controls anyway. you could build a big string in the DataTextField value of the DropDownList. e.g. ddl1.DataTextField = "Col1" + " - " + "Col2" Hope that is helpful, Rob