Search results for query: *

  • Users: vbinuyasha
  • Content: Threads
  • Order by date
  1. V

    Need a little more help but getting closer

    ok it nolonger gives me an error but it doesn't add anything to the db am i missing something here? Private Sub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click Dim objRow As DataRow 'Create a new DataRow object for this table objRow =...
  2. V

    Having trouble adding information to the database

    i am having some trouble with my add btn PrivateSub btnAdd_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnAdd.Click Dim objRow As DataRow cmd = New OleDbCommand 'Create a new DataRow object for this table objRow = ds.Tables("CarInfo").NewRow() 'Edit Each Field...
  3. V

    have a problem adding data to db

    when i try to add data to a access db i get this error Update requires a valid InsertCommand when passed DataRow collection with new rows. here is the code once again Option Explicit On Imports System.Data Imports System.Data.OleDb Public Class Form1 Inherits System.Windows.Forms.Form '...
  4. V

    getting an error and need help i am new

    An unhandled exception of type 'System.Data.OleDb.OleDbException' occurred in system.data.dll this comes up when i try to run my program and dont know why here is the code below Imports System.Data Imports System.Data.OleDb Public Class Form1 Inherits System.Windows.Forms.Form #Region "...
Back
Top