Automatically compress when an Access file is larger than the specified size

Source: Internet
Author: User
Tags compact file size access

Applicable ACCESS2000 and later versions

The following functions are added first in the public module:

The following are the referenced contents:

Public Function Autocompactcurrentproject ()
Dim FS, F, S, filespec
Dim Strprojectpath As String, Strprojectname as String
Strprojectpath = Application.CurrentProject.Path
Strprojectname = Application.CurrentProject.Name
filespec = Strprojectpath & "\" & Strprojectname
Set fs = CreateObject ("Scripting.FileSystemObject")
Set f = fs. GetFile (filespec)
s = CLng (f.size/1000000) ' Convert file size to MB
If s > Then ' Modify the 20M here for your own desired value
Application.SetOption ("Auto Compact"), 1 ' compression program
Else
Application.SetOption ("Auto compact"), 0 ' uncompressed program
End If
End Function

Call this function before any exiting program, for example, before Docmd.quit: Autocompactcurrentproject



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.