ASP.NET
  Home arrow ASP.NET arrow Page 3 - 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  
Visual Basic.NET  
Windows Scripting  
Windows Security  
XML  
ASP Web Hosting  
ASP.NET Web Hosting 
Mobile Linux 
App Generation ROI 
Windows Web Hosting
 
IBM® developerWorks 
Sun Developer Network 
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 - Code to retrieve the recordset


    (Page 3 of 6 )

    The following code is placed in a module that is added to the application. The AdoRst() procedure will provide a publicly visible recordset, rst. Since the CursorType is adOpenKeySet, the recordset may be moved up and down its range. The sample database is from Access 2003.

    Option Compare Database
    Public strsql As String
    Public cnn As New ADODB.Connection
    Public rst As New ADODB.Recordset
    Public Sub AdoRst()
    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 = adOpenKeyset
    .LockType = adLockOptimistic
    .Open strsql
    End With
    End Sub
    

    In an earlier tutorial it was mentioned that the Access form has a new property called the Recordset property. This is not a design time property, and therefore you do not see it in the picture shown above. You may, however, look for it in the object browser, where you will find it. Now all that is needed is to assign the form's control source property to the rst recordset. Then for each of the text boxes, the control source is the name of the Recordset's field items (0 based). The commented out message box would return true, since the recordset can be moved both ways.

    Private Sub Form_Load()
    Call AdoRst
    Set Me.Recordset = rst
    'MsgBox ("Can you move to a previous record: " & rst.Supports 
    (adMovePrevious)) Me.Text0.ControlSource = rst.Fields.Item(0).Name Me.Text2.ControlSource = rst.Fields.Item(1).Name Me.Text4.ControlSource = rst.Fields.Item(2).Name Set rst = Nothing Set cnn = Nothing End Sub

    A header is added to the form and appropriate labels are inserted for the text boxes, as shown in the displayed form in the next picture.

    More ASP.NET Articles
    More By Jayaram Krishnaswamy


       · The predominance of Microsoft products, especially its Office is primarily because...
     

    ASP.NET ARTICLES

    - Developing a Mini ASP.NET AJAX Server Centri...
    - Disadvantages of the ASP.NET MVC Framework
    - Advantages of the ASP.NET MVC Approach
    - ASP.NET Web Forms Weaknesses
    - ASP.NET Web Forms Meets ASP.NET MVC
    - Source Code for Saving and Retrieving Data w...
    - Using GridView to Save and Retrieve Data wit...
    - Handling Dynamic Images in ASP.NET 3.5 AJAX ...
    - Retrieving Data with AJAX and the GridView C...
    - Playing with Images in ASP.NET 3.5 AJAX Appl...
    - Saving and Retrieving Data with AJAX
    - Enhancing PHP Via the ASP.NET AJAX Framework...
    - Enhancing PHP Programming with the ASP.NET A...
    - Classes and ASP.NET AJAX
    - Using ASP.NET AJAX

     
    Best Practices for Windows Vista Migration Presentation
    Dell and Microsoft recently held a series of face-to-face seminars entitled, &qu....

     
    Creating a Culture for Code Reuse
    If you oversee development teams you know that like it or not proprietary and ex....

     
    Keys to Web Application Acceleration: Advances in Delivery Systems
    Accelerate Web apps by up to 5x. Ensure significantly faster access to the Web a....

     
    Optimizing Application Monitoring
    Tired of finding out from your customers that you're offline? This white paper e....

     
    Solaris to Solaris Migration -- Migrating applications from Sun SPARC to Dell PowerEdge R900
    This comprehensive Migration Guide reviews the approach that Principled Technolo....

     




    © 2003-2009 by Developer Shed. All rights reserved. DS Cluster 5 hosted by Hostway
    Stay green...Green IT