Search results

  1. P

    Make read-only recordset updateable

    Solution The query is by nature read only but... After much hunting here is the solution Set rst = New ADODB.Recordset rst.CursorLocation = adUseClient rst.Open "SELECT * FROM EqptListQuery", CurrentProject.Connection, adOpenKeyset, adLockOptimistic rst.ActiveConnection =...
  2. P

    Make read-only recordset updateable

    I'm not sure how to achieve this. Essentially. I have a table that contains a column whose entries become columns. the inital table is an output from Autocad an as such can't be changed. I am trying to present the data in a more user-friendly, useable format Phill
  3. P

    Make read-only recordset updateable

    I have a query that by nature is read-only. This data is used to populate a form in datasheet mode. Somehow I need to be able to edit the entry and update the source table. Any Ideas. I appreciate the fact that I will need vba code to do the updating. that is no problem. I have tried to...
Back
Top Bottom