(i'm totally clueless when it comes to vb) i'm getting "compile error invalid use of property"
with the error
[CODE=vb]
Private Sub cmdDelete_Click () (at here)
Dim db1 As ADODB.Command
db1 = New ADODB.Command
db1.ActiveConne ctio n = "A:\db1.mdb "
db1.CommandType = adCmdText
db1.CommandText = "delete * from order where orderid=" & txtOrder.Text
db1.Execute...