![]() |
Desktop Development »
Combo & List Boxes »
General
Intermediate
License: The Code Project Open License (CPOL)
Displaying an empty value in a combo box in a C# Windows application using MS AccessBy Johann LazarusDisplay an empty value in a combo box within a C# Windows application using an SQL query |
C# 1.0, Windows, .NET 1.1VS.NET2003, Dev
|
||||||||
|
Advanced Search Add to IE Search |
|
|
|
||||||||||||||||
Welcome to my very first article in Code Project!
This is a very simple C# windows application that explains of how to display a combo box without showing the first value in the database but an empty value.
I was working on a windows application where I needed to display a combo box that would load with an empty field instead of displaying the first value in the table. I needed to do this with out physically inserting and empty field into the table that populates the combo box which is bad practice.
Unfortunately as I'm still learning I was unable to find a good source on the internet that was able to help me. I can only assume this was because I probably did not type a key word or the article did not really deliver the information that I needed. I'm hoping my article will help those who are also searching of ways to modify the way their combo box displays.
I have created a very simple windows form with two combo boxes on it. The reason I put two combo boxes was to better show the difference between a combo box with an empty field and one without. As you can see from the image above, the combo box on the right contains an empty field when the form loads. (I will focus on the combo box on the right in my article).
I've developed this little application using a three layer model. (Not really necessary for this demonstration, but I thought it would make the flow of the program a little clearer). When the form loads, the combo box populates by calling the GetCountries2 method in the Countries class. This method contains an SQL query that is passed into the DataAccessLayer object and executed by a method within the DataAccess class.
Populating the combo box with an empty value.
The GetCountries2 method:
public static DataTable GetCountries2() { try { DataAccess.OpenDatabaseConnection(); string strSQLCountries; strSQLCountries = "SELECT Countries.[Common Name] "; strSQLCountries += "FROM Countries"; strSQLCountries += " UNION SELECT '' FROM [Countries] WHERE [Countries].[ID] = 1 "; DataTable dtCountries; dtCountries = DataAccess.ExecuteDataTable(strSQLCountries); return dtCountries; } catch(Exception ex) { throw(ex); } finally {DataAccess.CloseDatabaseConnection();}}
The SQL query starts off by getting all the countries in the Countries table.
SELECT Countries.[Common Name] FROM Countries
The next part of the SQL query simply Selects (or sets) an empty string where the ID is equal to 1. This adds both results a dataset with all the countries and a dataset with and empty string together.
UNION SELECT '' FROM [Countries] WHERE [Countries].[ID] = 1
1) Unzip the files into a specific location.
2)You will need to change the path of the database in the App.config file before you can run the application.
3) Compile the DataAccessLayer Object and then the ClassObjectlayer before finally compiling the solution file.
| You must Sign In to use this message board. | ||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||
General
News
Question
Answer
Joke
Rant
Admin
|
PermaLink |
Privacy |
Terms of Use
Last Updated: 19 Oct 2006 Editor: |
Copyright 2006 by Johann Lazarus Everything else Copyright © CodeProject, 1999-2009 Web17 | Advertise on the Code Project |