Hello my friends,
Is it possible to build my connectionstring in code like this:
VB Code:
Imports System.Data.OleDb Dim oOleDbConnection As OleDbConnection Dim sConnString As String = _ "Provider=Microsoft.Jet.OLEDB.4.0;" & _ "Data Source=C:\myPath\myJet.mdb;" & _ "User ID=Admin;" & _ "Password=" oOleDbConnection = New OleDb.OleDbConnection(sConnString) oOleDbConnection.Open()
And then use the wizards to make a detailform and use the binding navigator, etc...???




Reply With Quote