I am creating a document using TransferText method:
DoCmd.TransferText acImportDelim, "071703 Import Spec", "Budget", varImportFileName
I then open the document in NotePad for user to review.
What I want to do is insert two lines at the top of the document (line 1 and line 2) for a ProjectName and a ProjectNumber that would be picked up from 2 text fields on the form that the TransferText process is run from.
How would I go about this? Thanks.
DoCmd.TransferText acImportDelim, "071703 Import Spec", "Budget", varImportFileName
I then open the document in NotePad for user to review.
What I want to do is insert two lines at the top of the document (line 1 and line 2) for a ProjectName and a ProjectNumber that would be picked up from 2 text fields on the form that the TransferText process is run from.
How would I go about this? Thanks.