| ||||||
|
Open Email Using SendObject Access Download Send Email Microsoft Access Tutorial Download (Advanced) Multi Select List Box Query Parameters Programming MS Access Security Alternative Single User Inventory Calculations Download How To Perform Multi-User Inventory Calculations Make Dependent Combo Box Code MS Access Tutorial Download 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 Bar Chart / Bar Graph Download Programming Crosstab Query Example TransferText & OutputTo Microsoft Access Download DoCmd.OpenForm & OpenArgs VBA Example |
Docmd TransferText Example DownloadThe 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:
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 Copyright 2000-2013 Blue Claw Database Design, LLC
|