I'm reading Vb code of my ex-colleague and here is what I see
My question is why this is working !!! isn't it lacking one double quotation?? there is one quotation before DELETE but there is no ending quotation!!
Code:
strSQL = "DELETE FROM tblA WHERE fieldA = """ & name & Chr(34) DoCmd.RunSQL strSQL, -1
Comment