Hi all,

void CDatabaseDlg::OnButtonCtables()
{
CDatabase db;

try
{
db.OpenEx(NULL);
}

catch(CDBException *e)
{
AfxMessageBox(e->m_strError);
return;

...
}

Now my question: How can I retrieve the names of all tables in the choosen database???

Thanks

Jürgen (mailto:[email protected])