I am exporting a query in text format using following command.
Sub ExpPricePoints()
DoCmd.TransferText acExportDelim, "Export Specification", "qPricePoints", "\\nhomadgffs002\Design\04 Revit Server\Price Points.txt", True
End Sub
I need to be able to show following text as the header in this text file so that the exported text is used by other system using the column ref.
",TIPS_ref##other##,ID_Type_Code##other##,Department##other##,
Frame_code##other##,Inserts##other##,Description##other##,
Manufacturer##other##,Height##length##millimeters,
Width##length##millimeters,Depth##length##millimeters"
Any idea how could I achieve this.
Cheers
AK
Note: Using Access 97 for back end A2002 for front end.
Sub ExpPricePoints()
DoCmd.TransferText acExportDelim, "Export Specification", "qPricePoints", "\\nhomadgffs002\Design\04 Revit Server\Price Points.txt", True
End Sub
I need to be able to show following text as the header in this text file so that the exported text is used by other system using the column ref.
",TIPS_ref##other##,ID_Type_Code##other##,Department##other##,
Frame_code##other##,Inserts##other##,Description##other##,
Manufacturer##other##,Height##length##millimeters,
Width##length##millimeters,Depth##length##millimeters"
Any idea how could I achieve this.
Cheers
AK
Note: Using Access 97 for back end A2002 for front end.