codice:
Dim i As Integer
i = 0
While i < dbGestVille.rsstudio.RecordCount
adtit dbGestVille.rsstudio("nome"), dbGestVille.rsstudio
("votazione"), dbGestVille.rsstudio("data"), dbGestVille.rsstudio
("presso")
'= dbGestVille.rsstudio("presso")
i = i + 1
MsgBox i
Wend
io il ciclo lo scriverei così:
codice:
if dbGestVille.rsstudio.RecordCount > 0 then
dbGestVille.rsstudio.movefirst
do until dbGestVille.rsstudio.eof
adtit dbGestVille.rsstudio("nome"), dbGestVille.rsstudio
("votazione"), dbGestVille.rsstudio("data"), dbGestVille.rsstudio
("presso")
dbGestVille.rsstudio.movenext
loop
end if
guarda un po' se funziona?