adodc

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • kimmi kalra
    New Member
    • Oct 2006
    • 1

    adodc

    i am a baginner to visual basics.i wanted to know how to design an adodc control.is there anyone who can help me out.
    thanks..
  • Austen
    New Member
    • Oct 2006
    • 23

    #2
    Originally posted by kimmi kalra
    i am a baginner to visual basics.i wanted to know how to design an adodc control.is there anyone who can help me out.
    thanks..


    adodc1.Connecti onString = "Provider=Micro soft.Jet.OLEDB. 4.0;" & _
    "Data Source=" & App.Path & "\Log\" & gCurrent_MDB & "C" & ".mdb" & ";Persist Security Info=False"
    adodc1.recordse t.recordsource = "SELECT * from table_Name"
    adodc.refresh

    do while NOT adodc1.recordse t.EOF
    'stName = adodc1.recordse t.field("FieldN ame")
    '
    '
    loop



    not sure it can help u.

    Comment

    • Austen
      New Member
      • Oct 2006
      • 23

      #3
      Originally posted by kimmi kalra
      i am a baginner to visual basics.i wanted to know how to design an adodc control.is there anyone who can help me out.
      thanks..


      adodc1.Connecti onString = "Provider=Micro soft.Jet.OLEDB. 4.0;" & _
      "Data Source=" & App.Path & "\Log\" & gCurrent_MDB & "C" & ".mdb" & ";Persist Security Info=False"
      adodc1.recordse t.recordsource = "SELECT * from table_Name"
      adodc1.refresh

      do while NOT adodc1.recordse t.EOF
      'stName = adodc1.recordse t.field("FieldN ame")
      '
      '
      loop

      adodc1.Recordse t.Close

      not sure it can help u.

      Comment

      Working...