R
Robin
Is it possible to remove the subdatasheets in a BE while executing the code
from the FE of a split database? I've read the Microsoft article KB 275085
that addresses the issue but the code provided only updates the tables in the
database, FE or BE, in which the code is stored and executed.
It would be much more useful, for me, to have the code distributed with
updates along with the FE that could modify the property in existing BE
databases already distributed and in use.
I'm thinking that I would have to modify the Set MyDB = CurrentDB
As listed In:
Sub TurnOffSubDataSheets()
Dim MyDB As DAO.Database
Dim MyProperty As DAO.Property
Dim propName As String, propVal As String, rplpropValue As String
Dim propType As Integer, i As Integer
Dim intCount As Integer
On Error GoTo tagError
Set MyDB = CurrentDb
propName = "SubDataSheetName"
propType = 10
propVal = "[None]"
rplpropValue = "[Auto]"
intCount = 0
But change it to what? I don't seem to be able to find anything in the
properties section that looks like it would be beneficial.
Any suggestions would be greatly appreciated.
Thank you,
Robin
from the FE of a split database? I've read the Microsoft article KB 275085
that addresses the issue but the code provided only updates the tables in the
database, FE or BE, in which the code is stored and executed.
It would be much more useful, for me, to have the code distributed with
updates along with the FE that could modify the property in existing BE
databases already distributed and in use.
I'm thinking that I would have to modify the Set MyDB = CurrentDB
As listed In:
Sub TurnOffSubDataSheets()
Dim MyDB As DAO.Database
Dim MyProperty As DAO.Property
Dim propName As String, propVal As String, rplpropValue As String
Dim propType As Integer, i As Integer
Dim intCount As Integer
On Error GoTo tagError
Set MyDB = CurrentDb
propName = "SubDataSheetName"
propType = 10
propVal = "[None]"
rplpropValue = "[Auto]"
intCount = 0
But change it to what? I don't seem to be able to find anything in the
properties section that looks like it would be beneficial.
Any suggestions would be greatly appreciated.
Thank you,
Robin