I am trying to create a summary table from a table in Access that is 5,000,000 records and uses 800,000,000 of disk space.
When I run the make table query, I get an 'out of temporary disk space' error message.
Is there a way to increase my temporary disk space to successfully complete the build?
I have been hunting through MSDN trying to find the Excel properties and methods to use with VBA. I can do formulas and values but would also like to do the following:
Set Column width
Set Row height
Set Font
Set Background color
Set Borders
See nothing much. :)
...Object, XL As Object
Dim DB
Dim RS
Dim X
X = 0
Set DB = CurrentDb()
Set RS = DB.OpenRecordset("Select * from qrySelectReqReportOpen_ALL ORDER BY [Area Leader], [Req#]", dbOpenDynaset, dbReadOnly)
Set XL = CreateObject("Excel.Application")...
...Object, XL As Object
Dim DB
Dim RS
Dim X
X = 0
Set DB = CurrentDb()
Set RS = DB.OpenRecordset("Select * from qrySelectReqReportOpen WHERE DIVISIONID=3 ORDER BY RECRUITORS, DEPARTMENT, POSITION", dbOpenDynaset, dbReadOnly)
Set XL =...
I am running Outlook 2003. :P
That being said I did find a solution
Set myItem = MyOlApp.CreateItem(olMailItem)
myItem.To = TMail
myItem.Subject = "Weekly Open Requisition Report"
myItem.Body = "Attached is your open requisition report. Please note this includes all lines of...
My biggest problem is that I need a message and the attachment to go out. Is there a solution for that? Do you think doing body ahead of attachment would work? is there a way to force text mode when generating the email.
I am having difficulty with this one module. It is supposed to attach a spreadsheet and then allow the user to finish filling out the Outlook form before sending it.
The problem seems to be that the attachment is arriving corrupted.
Does anyone have any answers?
Private Sub Form_Open(Cancel...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.