VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Creating Microsoft Access Tables From VB

by jay patel (4 Submissions)
Category: Miscellaneous
Compatability: Visual Basic 5.0
Difficulty: Unknown Difficulty
Originally Published: Thu 24th August 2000
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Creating Microsoft Access Tables From VB

API Declarations


public con as connection


Rate Creating Microsoft Access Tables From VB



set rec = new recordset
set con = new connection
with con
.connection string = "user id = Admin;password=;datasource="path of daatbase"
.provider = "Microsoft.Jet.OLEDB.4.0"
.open
rec.open "create table tran(srno char(4))"
End Sub  

Download this snippet    Add to My Saved Code

Creating Microsoft Access Tables From VB Comments

No comments have been posted about Creating Microsoft Access Tables From VB. Why not be the first to post a comment about Creating Microsoft Access Tables From VB.

Post your comment

Subject:
Message:
0/1000 characters