Hi,
I have a form which creates a table based on various criteria:
Dim conDatabase As ADODB.connection
Dim rstLookup As ADODB.Recordset
Dim strSQL As String
Set conDatabase = CurrentProject.connection
strSQL = "Select [Audit_Freq].[value], '' AS lookup, '' AS notes INTO " & tblName & " from [Audit_Freq] where [Audit_Freq].
= '" & CmbTable.value & "' and [Audit_Freq].[name] = '" & CmbField.value & "' order by [Audit_Freq].[value];"
Set rstLookup = New Recordset
rstLookup.Open strSQL, conDatabase, _
adOpenDynamic, adLockOptimistic
This code all works fine, but after I have created it, i need to make the blank field "notes" into a memo type field.
Does anyone know if you can do this, and if so how??
Cheers,
skinicod
I have a form which creates a table based on various criteria:
Dim conDatabase As ADODB.connection
Dim rstLookup As ADODB.Recordset
Dim strSQL As String
Set conDatabase = CurrentProject.connection
strSQL = "Select [Audit_Freq].[value], '' AS lookup, '' AS notes INTO " & tblName & " from [Audit_Freq] where [Audit_Freq].
Set rstLookup = New Recordset
rstLookup.Open strSQL, conDatabase, _
adOpenDynamic, adLockOptimistic
This code all works fine, but after I have created it, i need to make the blank field "notes" into a memo type field.
Does anyone know if you can do this, and if so how??
Cheers,
skinicod