Re: Lock / Unlock VBA project
- From: FreeWheel <FreeWheel@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Sat, 18 Oct 2008 04:03:00 -0700
Hi,
The application has many tables , very many reports and and forms so Access
won't complete the MDE conversion telling me there is too many table
reference IDs for it too handle.
Do you know of any patch for this limitation ?
Tks
"Alex Dybenko" wrote:
Hi,.
suggest that you make mde and put a time check routine there, it is much
better solution that deleting reports
--
Best regards,
___________
Alex Dybenko (MVP)
http://accessblog.net
http://www.PointLtd.com
"FreeWheel" <FreeWheel@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:131BA243-33F1-47E9-9CFF-222CEC01663A@xxxxxxxxxxxxxxxx
HHHHHEEEELLLLLLPPPPPP anyone !
How do I Lock / Unlock my VBA project for viewing from a module within ?
I got this code in a Module which behaves properly only when the VBA
project
lock for viewing is OFF.
If dbs.AllReports.Count > 0 Then
For num = dbs.AllReports.Count To 1 Step -1
itemnum = num - 1
Set obj = dbs.AllReports(itemnum)
If obj.IsLoaded = False Then
DoCmd.DeleteObject acReport, obj.Name
Else
End If 'obj.IsLoaded
Next num
Else
End If 'AllReportsCount
I need to set the lock OFF ahead of this piece of code and back ON right
after it.
After spending too many evenings on the WEB searching....., I can only
find
PASSWORD RECOVERY utilities which work but I do not need.... I need what's
inside !
What do I need to set / reset ?
- Follow-Ups:
- Re: Lock / Unlock VBA project
- From: Alex Dybenko
- Re: Lock / Unlock VBA project
- References:
- Lock / Unlock VBA project
- From: FreeWheel
- Re: Lock / Unlock VBA project
- From: Alex Dybenko
- Lock / Unlock VBA project
- Prev by Date: How To Name Columns With Code
- Next by Date: Access Developer doesn't appear
- Previous by thread: Re: Lock / Unlock VBA project
- Next by thread: Re: Lock / Unlock VBA project
- Index(es):
Relevant Pages
|