D
David Portwood
I read a warning that a Dim statement such as:
Dim mySQL, RecSource, fldNames As String
is incorrect and should instead be written:
Dim mySQL as String, RecSource as String, fldNames as String
Is this true? It compiles ok. What is the problem?
Dim mySQL, RecSource, fldNames As String
is incorrect and should instead be written:
Dim mySQL as String, RecSource as String, fldNames as String
Is this true? It compiles ok. What is the problem?