I have a mail account in Outlook 2000 and a VB application used to read and process received messages.And a dont know how to set user name and password programmatically in my VB application, not set in Outlook.
Can you tell me how to do that??
Now my Code is
Set cn = new ADODB.Connection
Set rs = new ADODB.Recordset
With cn
.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & "myDatabase.mdb"
.Open
End With
rs.Open "Select * from myTable",cn, adOpenDynamic...
Here is my problem
I use VB6.0 and Access 2000
My Code is
Set cn = new ADODB.Connection
Set rs = new ADODB.Recordset
With cn
.ConnectionString="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & "Test.mdb"
.Open
End With
rs.Open "Select * from...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.