Get Database Size?

  • Thread starter Thread starter Warren
  • Start date Start date
W

Warren

Hi all,

I want to jazz up my open screen on my access application.

Do anyone know of a way or a function (built-in or otherwise) that will
allow me to get and display my database's current size on a form?

Thanks in advance!


Warren
 
Hi all,
I want to jazz up my open screen on my access application.

Do anyone know of a way or a function (built-in or otherwise) that
will allow me to get and display my database's current size on a
form?

Thanks in advance!


Warren

I suppose you could use

=FileLen(CurrentProject.Fullname)

which should also work directly in the controlsource of a control.
 
Back
Top