Make access .dbf an .exe file

Bradon

Board Regular
Joined
Dec 18, 2002
Messages
66
I have a database that I want to make available as a .exe file for users who do not have access on their machine.

Can this be done or can anyone point me towards a reasonably costed solution.
 

Excel Facts

How to change case of text in Excel?
Use =UPPER() for upper case, =LOWER() for lower case, and =PROPER() for proper case. PROPER won't capitalize second c in Mccartney
I don't think it is really possible. As far as I know you can't make an exe file from an Access database.

I think that if you are using Access to do something then the user might need to have Access installed on their machine.

What are you actually trying to do?
 
Upvote 0
Rather than make the database into an .exe file you could make it run in Microsoft Access Runtime. This will allow users to utilise the database without having to have the full version of Access installed on their machine.

To create a runtime compatible database ensure that a macro called AutoExec is created to display the startup form. Also ensure that all modules have error checking or the database will crash without any notification.

The error check I use is in the syntax shown below.

Sub XXX()

On Error GoTo Err_XXX

'Insert your code

Exit_Err_XXX:
Exit Sub

Err_XXX:
MsgBox Err.Description, vbCritical + vbSystemModal, "Error"
Resume Exit_Err_XXX

End Sub


Runtime downloads are dependant on the version of Access used to create the database.


Regards
Dave
 
Upvote 0
The MS Access runtime comes with the MS Office Developers edition.
It comes with a package & deployment wizard interface.

What this means is, you can create installation packages which can be distributed to users that do not have a full install of Access. Technically, the runtime is a license limited full installation of Access. The primary difference in use is, you have no menu's at all in the runtime. You must build everything into a form that must load at startup.

Mike
 
Upvote 0

Forum statistics

Threads
1,221,842
Messages
6,162,333
Members
451,759
Latest member
damav78

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top