Visual Basic

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • gwafa
    New Member
    • Sep 2006
    • 2

    Visual Basic

    Example program in Visual Basic 6.0 that has a Microsoft Access Database connected on it.
  • gwafa
    New Member
    • Sep 2006
    • 2

    #2
    Example program in Visual Basic 6.0 that has a Microsoft Access Database connected on it.

    Comment

    • phpmaet
      New Member
      • Sep 2006
      • 27

      #3
      Hi,

      you can use this code.

      Code:
          With Adodc1
              .ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & _
                  App.Path & "sample.mdb;Persist Security Info=False"
              .RecordSource = "select * from test order by id"
          End With

      Thanks

      Comment

      Working...