ASP.NET
  Home arrow ASP.NET arrow Page 4 - Binding Data to Controls with MS Access an...
ASP Free Forums 
.NET  
ASP  
ASP Code  
ASP.NET  
ASP.NET Code  
BrainDump  
C#  
Code Examples  
Database  
Database Code  
IIS  
Microsoft Access  
MS SQL Server  
Silverlight  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
Mobile Linux 
App Generation ROI 
IBM® developerWorks 
ASP Web Hosting  
ASP.NET Web Hosting 
Windows Web Hosting
 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
ASP.NET

Binding Data to Controls with MS Access and ADO
By: Jayaram Krishnaswamy
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 11
    2006-06-14

    Table of Contents:
  • Binding Data to Controls with MS Access and ADO
  • Retrieving and displaying data using text boxes
  • Code to retrieve the recordset
  • Populating a combo box
  • Displaying the combo box
  • Displaying a list box

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Binding Data to Controls with MS Access and ADO - Populating a combo box


    (Page 4 of 6 )

    As mentioned previously, the combo box will be populated in order to use it as a constraint to filter the data from the database for displaying to the user. Typically this may be the column "last name" in a database containing contact information, or it could be the telephone number in a video store database example. In the present example it will be the shipper's name as shown in the picture. Again the combo box is unbound in the design.

    In a combo box you want to dump all of the data, and you do not require it to be scrollable. In order to get this functionality with reduced record locks, you need to use the read-only, forward-only type of cursor and close it immediately. The code for achieving this is shown here. The CursorType adOpenForwardOnly achieves a fast read of the data, and the recordset is closed immediately after retrieval. Although the code has been written to the click event of a button, it could have been a procedure called by the from load event itself.

    In order to populate the combo box, row after row of data is collected in a string with each row separated by a semi-colon and the aggregated string is assigned  to the combo box's row source property. The syntax for the value list is  < value1;value2;value3;...>.  At design time, make sure that the row source type of the combo box is set to value list, as shown in this picture. The other option for row source type is Table/Query, which is not applicable in this case.

    Private Sub Command6_Click()
    '-----fast data retrieval block----
    With cnn
    .Provider = "Microsoft.Jet.OLEDB.4.0"
    .Open "C:Program FilesMicrosoft OfficeOFFICE11SAMPLESNorthwind.mdb"
    End With
    strsql = "Select * from Shippers"
    With rst
    Set .ActiveConnection = cnn
    .CursorType = adOpenForwardOnly
    .LockType = adLockReadOnly
    .Open strsql
    End With
    '--------Aggregating the semi-colon delimited string from recordset--
    Me.Combo9.RowSource = ""
    Dim strCombo
    strCombo = ""
    While Not rst.EOF '------generate [value list for row source] here---- strCombo = strCombo + rst.Fields.Item(1) & ";" rst.MoveNext Wend '------Assigning aggregate string to row source--- Me!Combo9.RowSource = strCombo Set rst = Nothing Set cnn = Nothing
    End Sub

    More ASP.NET Articles
    More By Jayaram Krishnaswamy


       · The predominance of Microsoft products, especially its Office is primarily because...
       · Very good explanation.I couldnt get mine to work for a while, but then I took...
     

    ASP.NET ARTICLES

    - Adding Content to a Static ASP.NET Website
    - Building a Static ASP.NET Website in a Basic...
    - Develop Your First ASP.NET Website with Visu...
    - Run ASP.NET in Windows XP Home with Cassini ...
    - How to Test a Web Application
    - How to Add Code and Validation Controls to a...
    - Working in Source and Split Views to Build a...
    - How to Build a Web Form for a One-Page Web A...
    - How to Develop a One-Page Web Application
    - An ASP.NET Web Application in Action
    - Developing ASP.NET Web Applications
    - An Introduction to ASP.NET Web Programming
    - Introduction to the ADO.NET Entity Framework...
    - Completing an In-Text Advertising System und...
    - Programming an In-Text Advertising System un...





    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 6 Hosted by Hostway
    For more Enterprise Application Development news, visit eWeek