ACC1x: Description of CreateForm() and CreateReport() FunctionsID: Q109395
|
This article describes the CreateForm() and CreateReport() functions that are documented in the "The Secrets of Access Wizards" manual which is included with the Microsoft Access Distribution Kit.
This article assumes that you are familiar with Access Basic and with
creating Microsoft Access applications using the programming tools provided
with Microsoft Access. For more information on Access Basic, please refer
to the "Introduction to Programming" manual.
CreateForm(), CreateReport() Functions
--------------------------------------
Description Creates a new form or report and returns a form or
report object.
Syntax CreateForm([database [,formtemplate]])
CreateReport([database [, reporttemplate]])
Remarks The CreateForm() and CreateReport() functions use the
following arguments:
Argument Description
--------------------------------------------------------
database String expressions identifying the name
of the database that contains the form
or report template; if the argument is
omitted, the current user database (the
same value as returned by the CurrentDB
function) is used.
formtemplate, String expression identifying the name
reporttemplate of the form or report template, the
name of a form or report, or the word
Normal. If the expression is omitted,
Access Basic uses the form or report
template set with the Options command
on the View menu.
These functions are the equivalent of choosing New Form
and New Report from the File menu in the Database
window. They return a form or report object. Use these
functions in Design Mode only.
Example Creates a report in the user database using the Normal
template.
Sub NormalReport()
Dim MyReport As Report
' CreateReport function creates a minimized report
' that we need to restore.
Set MyReport = CreateReport("","")
DoCmd Restore
End Sub
Microsoft Access "The Secrets of Access Wizards," page 15
Additional query words: ADK
Keywords : kbprg
Version : 1.0 1.1
Platform : WINDOWS
Issue type : kbinfo
Last Reviewed: March 29, 1999