Hi..actually am stuck up at a place while converting my current projet from DAO to ADO. As there is no equivalent function for Tabledef in ADO..thus i cant figure it out, as to how to replace the following code with.
The following code searches for the table with name "BlockTable". If it finds the table, flag is set to TRUE, else False.
Dim tdf as TableDef
For Each tdf In db.TableDefs
If UCase(tdf.Name) = UCase("Blocktable") Then
l_flgtab = True
Exit For
Else
l_flgtab = False
End If
Next tdf
PLzzz help me out...