Search results for query: *

  1. V

    Running access queries in background

    I think this will do the job... Imports System.Data Imports System.Data.OleDb Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim affectedRows = ExecuteNonQuery(param1.Text) MsgBox("the number of affected...
  2. V

    TableAdpaters and tables

    Check this out: Building and using a 3-tiered data architecture with ASP.NET 2.0
  3. V

    Insert Command

    The connection stringis missing it's closing ';': connect.ConnectionString = "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source = C:\Holiday.mdb;"
Back
Top