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. :)
My solution was to do something like this.
Function MakeSS_ALEADER()
' Declare an object variable to hold the object
' reference. Dim as Object causes late binding.
DoCmd.Hourglass True
DoCmd.OpenForm "frmWorking"
DoCmd.RepaintObject acForm, "frmWorking"
Dim ExcelSheet...
Here is an example where I load a template and then write data to the excel spreadsheet
Function MakeSS_PDP()
' Declare an object variable to hold the object
' reference. Dim as Object causes late binding.
DoCmd.Hourglass True
DoCmd.OpenForm "frmWorking"
DoCmd.RepaintObject...
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.