I am trying to write a report to a hard drive on my network. The following is the code being used:
strCriteria = "WPNo1 = '" & Me.WPNo1x & "' AND WPNo2 = '" & Me.WPNo2xx & "'" ' And Stage = " & Me.Stagex & " And Version = " & Me.Versionx"
stDocName = "Graphic Work Package Report"
DoCmd.OpenReport stDocName, acViewPreview, , wherecondition:=strCriteria
DoCmd.OutputTo acOutputReport, "Graphic Work Package Report", "Snapshot Format", "\\Arsoafs\ARSOA Public\ARSOA CM\Staging Area for DA Authenticated Deliverables\1-1520-272-23&P\Rev_2"
I am getting an error that does not make sense to me because I have 30 gig free on my drive.
The error is "The report snapshot was not created because you don't have enough free disk space for temporary work files."
It is err.number 2024. I know this is not the case. Why is this happening? Is it actually looking for memory on this message?
strCriteria = "WPNo1 = '" & Me.WPNo1x & "' AND WPNo2 = '" & Me.WPNo2xx & "'" ' And Stage = " & Me.Stagex & " And Version = " & Me.Versionx"
stDocName = "Graphic Work Package Report"
DoCmd.OpenReport stDocName, acViewPreview, , wherecondition:=strCriteria
DoCmd.OutputTo acOutputReport, "Graphic Work Package Report", "Snapshot Format", "\\Arsoafs\ARSOA Public\ARSOA CM\Staging Area for DA Authenticated Deliverables\1-1520-272-23&P\Rev_2"
I am getting an error that does not make sense to me because I have 30 gig free on my drive.
The error is "The report snapshot was not created because you don't have enough free disk space for temporary work files."
It is err.number 2024. I know this is not the case. Why is this happening? Is it actually looking for memory on this message?