ACC2000: Can't Use PrtDevMode or PrtMip Property with MDE Files (209867)
The information in this article applies to:
This article was previously published under Q209867 Advanced: Requires expert coding, interoperability, and multiuser skills.
SYMPTOMS
In an MDE file, you cannot use the PrtDevMode or PrtMip property to change printer information for forms and reports. If you try to modify printer information by programmatically using the PrtDevMode or PrtMip property, you may receive the following error message:
That command isn't available in an MDE database.
CAUSE
To modify printer information using the PrtDevMode or PrtMip property, the form or report must first be opened in Design view. However, forms, reports, and modules cannot be opened in Design mode within an MDE file.
RESOLUTION
Instead of creating MDE files, create a Microsoft Access database and add
Microsoft Access security to the database. Adding security to your
Microsoft Access database (MDB) will prevent users from viewing the design
of your forms, reports, modules, and so on.
IMPORTANT: This resolution assumes that you understand the Microsoft Access Security model.
If you use a Microsoft Access database that has been secured, you can use
the CreateWorkspace method to create a session for the Administrator of the database while programmatically modifying printer information using the PrtDevMode or PrtMip property.
For more information on Microsoft Access Security, see the following
documentation:
148555 MS Access 95 Security White Paper Available in Download Center
132143 Overview of How to Secure a Microsoft Access Database
The following example uses the default Admin user as the Administrator of
the Northwind database, and allows user Guest to open a report, change its
margin settings, and then preview the report.
CAUTION: Following the steps in this example will modify the sample
database Northwind.mdb. You may want to back up the Northwind.mdb file
and perform these steps on a copy of the database.
- Open the sample database Northwind.mdb.
- Create a module and type the following lines in the Declarations section:
Option Explicit
Type str_PRTMIP
strRGB As String * 28
End Type
Type type_PRTMIP
lngLeftMargin As Long
lngTopMargin As Long
lngRightMargin As Long
lngBotMargin As Long
lngDataOnly As Long
lngWidth As Long
lngHeight As Long
lngDefaultSize As Long
lngColumns As Long
lngColumnSpacing As Long
lngRowSpacing As Long
lngItemLayout As Long
lngFastPrint As Long
lngDatasheet As Long
End Type
- Save and close the module.
- Open a new form not based on any table or query in Design view.
- Add a command button to the form.
- Set the command button's OnClick property to the following event procedure:
Private Sub Command0_Click()
' This example shows how to set report margins in a secured
' database.
Dim wrkAdmin As Workspace
Dim dbs As Database
Dim ctrReports As Container
Dim docReport As Document
Dim PrtMipString As str_PRTMIP
Dim PM As type_PRTMIP
Dim Rpt As Report
Dim strName As String
strName = "Summary of Sales by Year"
' Create a new session and assign it to the database administrator.
Set wrkAdmin = DBEngine.CreateWorkspace("AdminWorkspace", "Admin", _
"Admin", dbUseJet)
' Be sure to change the path in this next line to match your path to
' Northwind.mdb.
Set dbs = wrkAdmin.OpenDatabase("C:\Northwind.mdb", False)
Set ctrReports = dbs.Containers!Reports
Set docReport = ctrReports.Documents(strName)
' Give the Users group full permissions to this report.
docReport.UserName = "Users"
docReport.Permissions = dbSecFullAccess
' Close the session.
wrkAdmin.Close
' Open the report in Design view and set the report object variable.
DoCmd.Echo False
DoCmd.OpenReport strName, acDesign
Set Rpt = Reports(strName)
' Assign the reports current device information.
PrtMipString.strRGB = Rpt.PrtMip
' Assign the device information into its various components.
LSet PM = PrtMipString
' The new margin settings to be used are half inch.
' Note: The Summary of Sales by Year report has 1" margins by
' default.
PM.lngLeftMargin = 0.5 * 1440
PM.lngTopMargin = 0.5 * 1440
PM.lngRightMargin = 0.5 * 1440
PM.lngBotMargin = 0.5 * 1440
' Update the device information with the new settings.
LSet PrtMipString = PM
Rpt.PrtMip = PrtMipString.strRGB
' Close the design of the report, saving the changes,
' and then preview the report.
DoCmd.Close acReport, strName, acSaveYes
DoCmd.OpenReport strName, acViewPreview
DoCmd.Echo True
' Re-create a new session, assigning it to the database
' administrator.
Set wrkAdmin = DBEngine.CreateWorkspace("AdminWorkspace", "Admin", _
"Admin", dbUseJet)
' Be sure to enter the correct path in this next line as well.
Set dbs = wrkAdmin.OpenDatabase("C:\Northwind.mdb", False)
Set ctrReports = dbs.Containers!Reports
Set docReport = ctrReports.Documents(strName)
' Assign Read permissions for to this report back to the Users group.
docReport.UserName = "Users"
docReport.Permissions = dbSecReadSec
' Close the session.
wrkAdmin.Close
End Sub
- Save the form as Form1 and close it.
- Remove all permissions for the Users group for all objects.
- Create a new user called Guest.
- Assign the following permissions to the Guest user:
- Open/Run on the Current Database
- Read Data and Read Design on the Order Details table
- Read Data and Read Design on the Orders table
- Read Data and Read Design on the Order Subtotals query
- Read Data and Read Design on the Summary of Sale by Year query
- Open/Run on the Form1 form
- Open/Run, Read Design and Modify Design on the "Summary of Sales
by Year" report
- Assign the password Admin to the Admin user.
- Close and restart Microsoft Access.
- Type Guest as the logon name, and press ENTER.
- Open the Form1 form in Form view, and click the command button. Note
that the "Summary of Sales by Year" report displays in print preview with half-inch margins.
NOTE: Because you have assigned only Open/Run permissions to the Form1 form, it is impossible for the user to open the form in Design view in order to discover what the Admin's password is. However, keep in mind that a properly secured database would never use the default Admin account as the administrator of a database.
REFERENCES
For more information about PrtDevMode or PrtMip property, in the Visual
Basic Editor, click Microsoft Visual Basic Help on the
Help menu, type "PrtDevMode Property or PrtMip Property" in the Office Assistant or
the Answer Wizard, and then click Search to view the topic.
For additional information about getting help with Visual Basic for Applications, please see the following article in the Microsoft Knowledge Base:
226118 OFF2000: Programming Resources for Visual Basic for Applications
Modification Type: | Minor | Last Reviewed: | 10/11/2006 |
---|
Keywords: | kbprb kbProgramming KB209867 |
---|
|