DoCmd.RunSQL("DELETE * FROM tblBlah WHERE Blah = Blah")
is one way to do it. (VBA)
In VB...
Use the execute method of the connection...
Dim cn as connection
Set cn = [Some connection string]
with cn
.execute("DELETE * FROM tblBlah WHERE Blah = Blah")
end with
[This message has been edited by scottfarcus (edited 04-10-2002).]