View Single Post
  #2  
Old July 23rd, 2009, 08:00 AM posted to microsoft.public.access.gettingstarted
NevilleT
external usenet poster
 
Posts: 159
Default Create "cancel" button on a form collecting parameters

Hi Anders
Not sure how you are approaching this, but the usual way is to have a report
button on a form. The report button opens the parameter form, and you fill
in details. You then have a button on the parameter form called something
like "Preview Report" which opens the report. If you close the parameter
form, you never get to the report. If you want you can add a "Cancel" button
to the parameter form which closes the form.

Neville Turbit
www.projectperfect.com.au


"anders bitzer" wrote:

Hi
As new danish user in Access 2007 I have a small question.
With help from the help menu, I have created a form that collects parameters
for a report. Only thing missing is a cancel button on the form that allows
me to cancel the query.
Following the help menu I have following module in VBA, but I guess
something should be changed between the brackets.

Function IsLoaded(ByVal strFormName As String) As Boolean

Dim oAccessObject As AccessObject
Set oAccessObject = CurrentProject.AllForms(strFormName)

If oAccessObject.IsLoaded Then
If oAccessObject.CurrentView acCurViewDesign Then
IsLoaded = True
End If
End If

Thanks in advance for any help.
Anders