Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hi all,
Hopefully someone can help. I am trying to use some code to move some text entered into a spreadsheet into an Access database, however when I run the code I get the error "Compile error: User-defined type not defined" with the "cn As ADODB.Connection" portion of the code highlighted. Am I missing something very obvious? My code is:- Sub AddInfoToTAMDB() Dim cn As ADODB.Connection, rs As ADODB.Recordset, r As Long Set cn = New ADODB.Connection cn.Open "Provider=Microsoft.Jet.OLEDB.4.0; " & _ "Data Source=K:\TAM Message.mdb;" Set rs = New ADODB.Recordset rs.Open "Customers", cn, adOpenKeyset, adLockOptimistic, adCmdTable With rs .AddNew .Fields("DateTime") = txtTAMDateTime.Value .Fields("CallHandler") = txtTAMCH.Value .Fields("IFAName") = txtIFAName.Value .Fields("IFAFirm") = txtIFAFirm.Value .Fields("PostCodeorAgencyNumber") = txtPostCode.Value .Fields("PhoneNumber") = txtTelNo.Value .Fields("AccountManager") = txtAccMan.Value .Fields("Message") = txtMessage.Value .Update End With rs.Close Set rs = Nothing db.Close Set db = Nothing End Sub All help greatly appreciated!! Thanks, Will |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Moving excel workbook with access query to another folder | Excel Discussion (Misc queries) | |||
Moving Data between sheets in the same workbook and moving data between Workbooks. | Excel Worksheet Functions | |||
Moving an Excel pivot table to access | Excel Worksheet Functions | |||
Moving linked Excel/Access files to another machine | Links and Linking in Excel | |||
moving data between excel and access | Excel Programming |