.NETGURU
Show Blank value in Combo Box
Messages   Related Types
This message was discovered on microsoft.public.dotnet.framework.windowsforms.
Responses highlighted in red are from those people who are likely to be able to contribute good, authoratitive information to this discussion. They include Microsoft employees, MVP's and others who IMHO contribute well to these kinds of discussions.
Post a new message to this list...

CarlT (VIP)
I need to display a blank value as well as other values. I do not want to
alter any current records but just be able to display this blank value
amongst the list.
I have not been able to figure out how to do this in a combo box. Any help
will be greatly appreciated.

Click here to reveal e-mail address
Reply to this message...
 
    
Lateralus [MCAD]
Carl,
I think it's getting too late at night to be doing this. I'm making too
many typos....Anyway, here is the code from my previous post. It should be
OK now.

DataRow myRow = ds.Tables[0].NewRow();
myRow["VALUE_COLUMN_NAME"] = DBNull.Value;
myRow["DISPLAY_COLUMN_NAME"] = "";
ds.Tables[0].Rows.InsertAt(myRow,0);

control.DataSource = ds.Tables[0].DefaultView;
control.DisplayMember = "DISPLAY_COLUMN_NAME";
control.ValueMember = "VALUE_COLUMN_NAME";

--
Lateralus [MCAD]

"CarlT" <Click here to reveal e-mail address> wrote in message
news:Click here to reveal e-mail address...
[Original message clipped]

Reply to this message...
 
    
Joey Callisay
Follow up question:

I believe adding an empty row to the datatable to be bound to a combobox is
an ideal thing to do since without it, one need to add additional handling
on clearing a selection, etc. However until now, I haven't encountered any
tips about this issue, can you lighten me up.

"Lateralus [MCAD]" <dnorm252_at_yahoo.com> wrote in message
news:eHZV$Click here to reveal e-mail address...
[Original message clipped]

Reply to this message...
 
    
Lateralus [MCAD]
Carl, usually what I do is I'll add a new row to the view.

//assume ds is a dataset

DataRow myRow = ds.Tables[0].NewRow();
myRow[valueMember] = DBNull.Value;
myRow[displayMember] = "";
ds.Tables[0].Rows.InsertAt(myRow,0);

control.DataSource = ds.Tables[0].DefaultView;
control.DisplayMember = "DISPLAY_COLUMN_NAME";
control.ValueMember = "VALUE_COLUMN_NAME";

--
Lateralus [MCAD]

"CarlT" <Click here to reveal e-mail address> wrote in message
news:Click here to reveal e-mail address...
[Original message clipped]

Reply to this message...
 
 
System.Data.DataRow
System.DBNull




ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
Ad


Need Dot Net Interview Questions?
Ask ExamGuru, Inc. for advice and help on Passing .Net Interviews
.Net Projects
Best-of-breed application framework for .NET projects, developed by ExamGuru, Inc. and ExamGuru IT
Free .net Help
Commission ExamGuru, Inc. and his team for your next bespoke software project
FogBUGZ
The only bug tracking system carefully crafted with one goal in mind: helping teams create great software.
Awesome Tools
If you don't know about these, you're missing out... IT Certification Questions
IT Interview Questions
Free Oracle 10g Training
MCSE Boortcamp
Cisco Study Guides
Cheap Study Guides
Exact Questions
Dot Net Interview Questions
Oracle OCP
Cheap Travel
Designer Perfumes - Wholesale Prices
Free Programming Tutorials
 
ExamGuru IT Solutions - .Net Guru is owned and operated by ExamGuru, Inc., the man behind .Net Guru. If you're in the market for bespoke software or software consultancy, why not get him and his highly trained team to help? - www.examguru.net/ITCertification
 Copyright © ExamGuru, Inc. 2001-2006
Contact Us - Terms of Use - Privacy Policy - www.dot-net-guru.com - www.examguru.net - www.oraclesource.net - www.itinterviews.net - www.examguru.net/ITCertification