programming the Access toolbar

  • Thread starter Thread starter Mike
  • Start date Start date
M

Mike

How do you access the toolbar functions of Access in VBA code?

I am trying in code, to access the toolbar functiions

File --> Get External Data --> Import etc

thanks

Mike
 
Methods are different.

In general, the old DoMenuItem has been replaced with a RunCommand constant,
and Terry Twickenden has a list of those at:
http://www.tkwickenden.clara.net/

For your specific question, you want one of the Transferxxx methods, e.g.
TransferText, TransferSpreadsheet, ...
 
Back
Top