Linking or inserting a record in SQL to a text field in VB

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • Kavitha Lokesh
    New Member
    • Jul 2007
    • 1

    Linking or inserting a record in SQL to a text field in VB

    Hi All!
    I'm a fresher to this field and doing a project with VB as frontend and SQL as backend. I wanna know how 2 insert a record which is in SQL 2 a form in VB.

    For an example,
    A database in sql has fields like Cust.Name, Cust.ID, Cust.Address, Cust.Bill.
    Now if i want to display dis in d vb form, like one record in one form how will I link the form to the database? And should it b inserted it using textfield or label field or tell me if any other.

    Pl help me out in this..
  • r035198x
    MVP
    • Sep 2006
    • 13225

    #2
    Originally posted by Kavitha Lokesh
    Hi All!
    I'm a fresher to this field and doing a project with VB as frontend and SQL as backend. I wanna know how 2 insert a record which is in SQL 2 a form in VB.

    For an example,
    A database in sql has fields like Cust.Name, Cust.ID, Cust.Address, Cust.Bill.
    Now if i want to display dis in d vb form, like one record in one form how will I link the form to the database? And should it b inserted it using textfield or label field or tell me if any other.

    Pl help me out in this..
    Do not post questions in the articles section. Moved to the forum area.

    Comment

    • Killer42
      Recognized Expert Expert
      • Oct 2006
      • 8429

      #3
      Originally posted by Kavitha Lokesh
      I wanna know how 2 insert a record which is in SQL 2 a form in VB.
      The simplest way is to place a data control on the form, then add database-aware controls to show individual fields from it.

      Comment

      Working...