Hi,
like for any other keywords, you can access this table
with the Query:
Select * From [National]
instead of
Select * From National
So,
AdoTable1.TableName:='[National]';
works perfectly.
This trick works also with fields:
you can make a field named 'Sum' and access it by Select [Sum]
or a field 'e-Mail' (with minus sign) and use it [e-Mail],
but I suggest you to use Non-keyword names.
Ciao,
GeppoDarkson.