J
JB
I am working with an Access split db using security and RWOP queries. How
does one go about modifying the tables, e.g. adding a column, using vba code
or query without giving away the store? I tried using the standard code of
the sort
Set dbs = OpenDatabase("C:\Test.mdb")
Set tdf = dbs.TableDefs("tblTestAppend")
With tdf
.Fields.Append .CreateField("TextField", dbText)
End With
dbs.Close
Set dbs = Nothing
This only works if the user has modify design permission which means that
the db has no security at all. Is there so way to do the same thing without
giving the user any direct permissions on the tables. Something equivalent
to RWOP for queries
does one go about modifying the tables, e.g. adding a column, using vba code
or query without giving away the store? I tried using the standard code of
the sort
Set dbs = OpenDatabase("C:\Test.mdb")
Set tdf = dbs.TableDefs("tblTestAppend")
With tdf
.Fields.Append .CreateField("TextField", dbText)
End With
dbs.Close
Set dbs = Nothing
This only works if the user has modify design permission which means that
the db has no security at all. Is there so way to do the same thing without
giving the user any direct permissions on the tables. Something equivalent
to RWOP for queries