exporting form via VBA

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • thread

    #1

    exporting form via VBA

    hi,
    i'm trying to use this vba code to activate the menu export with vba
    but it doesnt work
    this is the code:
    CommandBars("Me nu Bar").Controls( "File").Control s("Export")
    any ideas what is missing?
  • Tom van Stiphout

    #2
    Re: exporting form via VBA

    On Tue, 4 Nov 2008 03:26:18 -0800 (PST), thread <yaniv.dg@gmail .com>
    wrote:

    Replace that with:
    RunCommand acCmdExportXxxx
    (with Xxxx replaced by an export type. See intellisense or help file)

    -Tom.
    Microsoft Access MVP


    >hi,
    >i'm trying to use this vba code to activate the menu export with vba
    >but it doesnt work
    >this is the code:
    >CommandBars("M enu Bar").Controls( "File").Control s("Export")
    >any ideas what is missing?

    Comment

    Working...