Ciao a tutti,
ecco qui il codice...........
Private Sub Form_Load()
Dim Cn As New ADODB.Connection
Dim Rs As New ADODB.Recordset
Cn.CursorLocation = adUseClient
Cn.Open "DRIVER={Microsoft Access Driver (*.mdb)}; DBQ=c:\inetpub\wwwroot\soanew\imprese.mdb"
Rs.Open "Select * from imprese", Cn, adOpenStatic, adLockOptimistic
Set DataGrid1.DataSource = Rs
End Sub
LA Select * from imprese RESTITUISCE 700 record, mentre nel programma ne escono 658!!!
sembra molto strano anche a me!!!
grazie mille
sara