Re: Alternative drill down?
- From: Stefan Hoffmann <stefan.hoffmann@xxxxxxxxxx>
- Date: Tue, 12 Aug 2008 11:03:25 +0200
hi,
JString wrote:
I've never heard of that method. How would I go about setting it up?Create a new form with this code behind:using a permanent open recordset.
Option Compare Database
Option Explicit
Private m_Recordset As DAO.Recordset
Private Sub Form_Close()
m_Recordset.Close
Set m_Recordset = Nothing
End Sub
Private Sub Form_Load()
Set m_Recordset = CurrentDb.OpenRecordset("anyTable", dbOpenSnapshot)
End Sub
Open this form at your application start using
DoCmd.OpenForm FormName:="yourForm", _
WindowMode := acHidden
mfG
--> stefan <--
.
- References:
- Alternative drill down?
- From: JString
- Re: Alternative drill down?
- From: Stefan Hoffmann
- Re: Alternative drill down?
- From: JString
- Alternative drill down?
- Prev by Date: toolbox wizard dissapeard
- Next by Date: Re: Writing and IIf statement in Access?
- Previous by thread: Re: Alternative drill down?
- Next by thread: access 2007
- Index(es):
Relevant Pages
|