The latter.
In some languages, including VB.NET, you can declare multiple variables in
this way, specifying the type only once at the end of the line, but in
'classic' VB and VBA you need to specify the type of each variable, or, as
you say, Variant will be used by default.

Signature
Brendan Reynolds
Access MVP
>I have found a number of instances in the database I have inherited where
>variables have been declared "Dim rs, rh, Dt As Recordset". Does this
[quoted text clipped - 3 lines]
>
> Thanks in advance
Brian Wilson - 02 Mar 2006 14:27 GMT
> The latter.
>
[quoted text clipped - 10 lines]
>>
>> Thanks in advance
To the OP:
And if you are going to correct this mistake, you may as well specify the
object library while you're at it. In other words, change:
Dim rs As Recordset
to either
Dim rs As DAO.Recordset
or
Dim rs As ADODB.Recordset
depending on which was intended.