Wrong
If you are coding your own database you can code in a kind of "Kick" function.
If you make a table (call it KICK) with 1 field, you can update the first (and only) record in this table to TRUE or FALSE.
Depending on what your database does you can write a bit of code into a module that checks for the value of this field.
If the value is true, the front end can shut itself down.
Be carefull though, make sure that you don't shut down anyones access window while they are in the middle of editing somthing.
A very very simple example could be
make a table called tblkick with these two fields
pk_Kick Autonumber
Kick Yes/No
public sub CheckforKick()
dim s as boolean
s = dlookup("[Field_Kick]","tblKick","pk_tblKICK = 1"
if s = true then
application.quit acsaveYes
end if
(You dont have to have to use autonumber, in fact i wouldnt.
Make a table like this say
tblControl
with two fields
CONTROL
PARAMATERS
you can then have a load of controls in one table.