Library tutorials & articles

ADO Data Control

What is a Data Control?

The ADO data control presents a fast and easy way to create a bound form by providing built-in functions that define, navigate, display, add to, and update the records in a recordset. The resulting form makes it easy for a user (non-developer) to maintain records. Although the data control defines the recordset, you’ll still need a control for each field to automatically display the bound records.

Figure A

Figure A displays a simple form with several bound controls. The data control at the bottom of the form contains four navigation buttons. These buttons, from left to right, allow you to move to the first, previous, next, and last records in the form’s recordset. If you update a record, VB will save that change when you move to another record. If you close the form before moving to another record, VB won’t save changes you’ve made to the current record.

Comments

  1. 26 Sep 2005 at 09:11
    Well I think the code should look like:
    Private Sub Form_Load()
    dcPekerja.Visible = False
    dcPekerja.ConnectionString = App.Path & "\db1.mdb"
    dcPekerja.RecordSource = "Select * From Table1;"
    End Sub

    All you have to add is a tiny little "\" and there you have it. I suppose that you already figured it out by now but if not hope it helps. Also make sure that the database is in the same directory as the ".exe" or ".vbp"

    Have fun coding!
  2. 23 Sep 2005 at 20:00
    Hi there... I went though your code and fond one mistake...

    Private Sub Form_Load()
    dcPekerja.Visible = False
    dcPekerja.ConnectionString = App.Path + "db1.mdb"
    dcPekerja.RecordSource = "Select * from Table1;"
    End Sub

    You Should Have

    Private Sub Form_Load()
    dcPekerja.Visible = False
    dcPekerja.ConnectionString = "\\db1.mdb"
    dcPekerja.RecordSource = "Select * From Table1;"
    End Sub
  3. 14 Sep 2004 at 01:23

    Or not

  4. 14 Sep 2004 at 01:21

    Well i supose you do have the database in the same directory with the application on the other computer

  5. 23 Apr 2004 at 23:34

    i'm using adodc to connect to access
    but i'm having problem when i use the application on other pc...
    it say that it cant found the database file...


    i use this coding... but still the error is there...


    Private Sub Form_Load()
    dcPekerja.Visible = False
    dcPekerja.ConnectionString = App.Path + "db1.mdb"
    dcPekerja.RecordSource = "Select * from Table1;"
    End Sub


    i also try this code...but nothing happens...
    Private Sub Form_Load()
    dcPekerja.Visible = False
    dcPekerja.ConnectionString = App.Path & "db1.mdb"
    dcPekerja.RecordSource = "Select * from Table1;"
    End Sub


    dcPekerja => adodc

  6. 27 Feb 2003 at 16:20

    Gave me insight, thanks

  7. 03 Aug 2002 at 15:38

    IMHO - The Data Control's sole usefullnes is when you literally want to scroll the data, one record at a time.javascript:smilie('')
    frown


    I find it MUCH easier to roll my own ADO RS control that will search for the resocrd(s) I need...javascript:smilie('')
    stick out tongue javascript:smilie('')
    wink


    This control should ONLY be used by total DB Newbies!!! (IMHO)javascript:smilie('')
    eek!

  8. 01 Jan 1999 at 00:00

    This thread is for discussions of ADO Data Control.

Leave a comment

Sign in or Join us (it's free).

Susan Harkins
AddThis

Related discussion

Related podcasts

  • Christian Beauclair

    14 mai 2008 (�mission #0074) ::.Christian Beauclair: Stratégies de migration VB6 vers .NET Nous discutons avec Christian Beauclair des stratégies de migration VB6 vers .NET. Entre autres, nous discutons comment utiliser le "VB 6 Code Advisor" et le "Interop Forms Toolkit" pour ajouter la puiss...

Want to stay in touch with what's going on? Follow us on twitter!