Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
HomeAnnouncementsFree MagazinesWhite PapersSubmit Content
Discussion GroupsASP.NETWindows FormsLanguages.NET FrameworkVisual Studio.NET
Articles.NET FrameworkASP.NETToolsWindows Forms
.NET DirectoryOpen Source ProjectsUser GroupsWeb Resources
Related Topics
Visual Basic 6SQL ServerMS AccessOther DB ProductsMS Server ProductsMore Topics ...

.NET Forum / Windows Forms / WinForm General / September 2004

Tip: Looking for answers? Try searching our database.

Show Blank value in Combo Box

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
CarlT - 03 Sep 2004 04:19 GMT
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.

carlt@gicw.org
Lateralus [MCAD] - 03 Sep 2004 05:01 GMT
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";

Signature

Lateralus [MCAD]

>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
[quoted text clipped - 3 lines]
>
> carlt@gicw.org
Lateralus [MCAD] - 03 Sep 2004 05:06 GMT
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";

Signature

Lateralus [MCAD]

>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
[quoted text clipped - 3 lines]
>
> carlt@gicw.org
Joey Callisay - 03 Sep 2004 07:40 GMT
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.

> Carl,
>     I think it's getting too late at night to be doing this. I'm making too
[quoted text clipped - 17 lines]
> >
> > carlt@gicw.org

Rate this thread:







Free Magazines

Get these publications absolutely FREE for up to 12 months. There are no hidden fees and no obligation. Simply choose a title, complete the application form and submit it. Read more ...

Oracle MagazineNetwork ComputingComputer WorldBio-IT WorldeWeekInformation WeekInfosecurity
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.