jsanderson
MIS
I have a query designed that creates all of the data in the proper order and formatting (mostly). On my main form I have a command button with the Click event set up as follows:
Private Sub cmdRunReport_Click()
DoCmd.TransferText transfertype:=acExportFixed, _
specificationname:="TodayReport Export Specification", _
tablename:="qryTodayReport", _
filename:="c:\windows\desktop\today.txt", _
hasfieldnames:=False
MsgBox "The Report is now on your desktop."
End Sub
The problem is - I need to define justification and 0-fill on select columns - any ideas how to go beyond the specification parameters to edit these results?
Private Sub cmdRunReport_Click()
DoCmd.TransferText transfertype:=acExportFixed, _
specificationname:="TodayReport Export Specification", _
tablename:="qryTodayReport", _
filename:="c:\windows\desktop\today.txt", _
hasfieldnames:=False
MsgBox "The Report is now on your desktop."
End Sub
The problem is - I need to define justification and 0-fill on select columns - any ideas how to go beyond the specification parameters to edit these results?