Am new to VB 6.0
How to select a file from the other system?
I want to access a file from the other system or server?
Need VB 6 code Help
Am new to VB 6.0
How to select a file from the other system?
I want to access a file from the other system or server?
Need VB 6 code Help
Try this:
Code: Set cn = New ADODB.Connection
cn.ConnectionString = "Provider =Microsoft.Jet.OLEDB.4.0;" & "DataSource = C:DBase.mdb"
cn.Open
You will need to change the Datasource to the name and address of your file.