change access option with VBA

  • Thread starter Thread starter TNL
  • Start date Start date
T

TNL

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

Thanks
TNL
 
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
 
Back
Top