change access option with VBA

T

TNL

Hi,
I want with VBA to change an access 2000 option.
Which command or method can I use?

Thanks
TNL
 
C

chas

Hi,

search VBA help for 'Set Options from Visual Basic'. This
gives information about using Application.SetOption and
lists the available arguments. For example:

Application.SetOption "Show Startup Dialog Box", True

hth

chas
 
Top