Search results

  1. S

    Error 3464 dao

    Do i need to change this: Set rst = dbs.OpenRecordset(sql) DoCmd.RunSQL "update proveedores set nrefs=0" While Not rst.EOF DoCmd.RunSQL "update proveedores set nrefs=" & CDbl(rst!cuantos) & " where idproveedor='" & rst!Proveedor & "'" for this?: set dbs = Currentdb dbs.execute "update...
  2. S

    Error 3464 dao

    Is actually added
  3. S

    Error 3464 dao

    Data type mismatch in criteria expression But its weird because in another computer with same code and references is working
  4. S

    Error 3464 dao

    Well i don't really know about access and VB... and for what i've been told, this is an old access database... it was working time ago, but i think that with 365 version of Access it doesnt work properly
  5. S

    Error 3464 dao

    Hi, I'm getting error 3464 while executing this code: Sub PonerNRefsProveedores() Dim dbs As DAO.Database Dim rst As DAO.Recordset Dim sql As String sql = "SELECT * from nrefs" Set dbs = CurrentDb Set rst = dbs.OpenRecordset(sql) DoCmd.RunSQL "update proveedores set nrefs=0" While Not...
Top Bottom