ciao
chiedo scusa ma sono un principiante per Access 2007 (e non solo...)
ho scritto le seguenti istruzioni in ADO per leggere una tabella :
Dim cn As ADODB.Connection
Dim rs As ADODB.Recordset
Dim strSQL As String
Dim intResult As Integer
Set cn = CurrentProject.Connection
strSQL = "SELECT COUNT(*) As RecordCount FROM Tabella1 where campo1 = " & maschera.campo1
Set rs = New ADODB.Recordset
rs.LockType = adLockReadOnly
rs.Open strSQL, cn, adOpenStatic, adLockReadOnly, adCmdText
intResult = rs("RecordCount")
rs.Close
cn.Close
come avrei dovuto scriverle per usare una query parametrica ?
grazie
ciao