Hello my friends,

Is it possible to build my connectionstring in code like this:

VB Code:
  1. Imports System.Data.OleDb
  2. Dim oOleDbConnection As OleDbConnection
  3. Dim sConnString As String = _
  4.     "Provider=Microsoft.Jet.OLEDB.4.0;" & _
  5.     "Data Source=C:\myPath\myJet.mdb;" & _
  6.     "User ID=Admin;" & _
  7.     "Password="
  8. oOleDbConnection = New OleDb.OleDbConnection(sConnString)
  9. oOleDbConnection.Open()

And then use the wizards to make a detailform and use the binding navigator, etc...???