Home  Fees/Services  Access Templates  Tutorials  Access Download  Articles  Search  Contact  Privacy  Links

Microsoft Access Download
TransferText Method & OutputTo Methods

TransferText & OutputTo Example Access 2007 Download

 Microsoft Access Download> TransferText & OutputTo Download

 
 

How To Open Email Using SendObject Access Download

Send Email Microsoft Access Tutorial Download (Advanced)

Multi Select List Box Query Parameters

Row Level Data Security

Programming MS Access Security Alternative

Inventory Calculations Download ( Single User)

How To Perform Inventory Calculations (Multi-User)

Make Dependent Combo Box Code MS Access  Tutorial Download

Union Query Example (Simple)

Union Query (Advanced) Access Tutorial Download

How To Fill Fields From Combo Box

Use Global Variables as Parameters

Download Continuous Form Dependent Combo Box

How To Program Continuous-Continuous Master/Detail Forms

Download Example for Bar Chart/ Bar Graph on Access Forms

Programming Crosstab Query Example

TransferText & OutputTo Microsoft Access Download

DoCmd.OpenForm & OpenArgs VBA Example

Running Sum Query Method

Choose Command Dynamic SQL Order By

Access Conditional Format

Access Report Banding

Popup Form Control Method


Docmd OutputTo Example Download &

Docmd TransferText Example Download

The DoCmd OutputTo Visual Basic method gives you the ability to send an Access object to a file on your computer.  There are several destination formats from which to choose:

  • acFormatActiveXServer

  • acFormatHTML

  • acFormatIIS

  • acFormatRTF

  • acFormatTXT

  • acFormatXLS

In this downloadable example we will work with the acformattxt (text) output method.  We output the data contained in our inventory table named "M_Inventory".  The output destination file is called Inventory.txt and is placed in your default directory at time of running the database example - usually the 'my documents' folder.

Here is the command line used in the Click event of the button on the form:

 DoCmd.OutputTo acOutputTable, "M_Inventory", acFormatTXT, "Inventory.txt"

You can read more about the DoCmd.OutputTo method in our learning section tutorial on the outputto method.

The second example contained in this Access database download is the DoCmd TransferText method.  Here we use an Export Specification defined in the export text wizard.  Microsoft makes it hard to get to the specifications.  See our DoCmd.Transfertext tutorial page for more details.  And to learn more about creating the export specifications go here: Create Export Specs

In this example we transfer the text of the M_Inventory table into a comma separated values formatted file on the hard drive.  The file will be called inventory.csv and is placed in your document and settings/my documents folder, same as the folder in the 1st example above.

The transfertext command that is used is as follows:

 DoCmd.TransferText acExportDelim, "Inventory_Specs", "M_Inventory", "Inventory.csv"

Use this link to download docmd outputto and docmd.transfertext Access examples.



Contact Information 

Microsoft Access Help

Microsoft Access Download • Access 2007 Download • MS Access Database Download