ItIsHardToProgram
Technical User
Hey again, I don't want to double post, but I made the other thread messy and this is a different issue (I believe they are both related).
I am getting random errors when running the code. When I say random I mean the following:
When I open access,
First time I run it, it runs smooth.
Second time I run it, I get a missing array error, all the arrays are present.
Third time I run it, no problem, and I can keep it at that forever.
Here is a quick glance at the code, wich is already present in my other post:
Thanks for any help!
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.
I am getting random errors when running the code. When I say random I mean the following:
When I open access,
First time I run it, it runs smooth.
Second time I run it, I get a missing array error, all the arrays are present.
Third time I run it, no problem, and I can keep it at that forever.
Code:
Function TransfertExcelAutomation(strSQL As String, _
sEmplacement As String)
On Error GoTo err_Handler
'Excel object variables
Dim appExcel As Excel.Application
Dim wbk As Excel.Workbook
Dim wks As Excel.Worksheet
Dim sTemplate As String
Dim sTempFile As String
Dim sOutput As String
Dim sDAte As String
Dim dbs As DAO.Database
Dim sSQL As String
Dim IRecords As Long
Dim iRow As Integer
Dim iCol As Integer
Dim iFld As Integer
Dim iWbk As Integer
Dim ProjectID As String
Dim ws As Excel.Worksheet, r As Excel.Range
Dim rst As Recordset
Dim i As Integer
Const cTabOne As Byte = 1
Const cTabTwo As Byte = 2
Const cStartRow As Byte = 3
Const cStartColumn As Byte = 1
iRow = 4
DoCmd.Hourglass True
'Set to break on all errors
Application.SetOption "Error Trapping", 0
'Start with clean file built from template file
'sTemplate = sEmplacement & "\BrunoInterface.xls"
sOutput = sEmplacement & "\MarcInterface.xls"
' If Dir(sOutput) <> "" Then Kill sOutput
'FileCopy sTemplate, sOutput
'Create the Excel Application, Workbook and Worksheet and Database object
Set appExcel = New Excel.Application
appExcel.Visible = False
'MsgBox (sOutput)
Set wbk = appExcel.Workbooks.Open(sOutput)
iWbk = Workbooks.Count
Set dbs = CurrentDb
Set rst = dbs.OpenRecordset(strSQL, dbOpenSnapshot)
If Not rst.BOF Then rst.MoveFirst
'For this template, the data must be placed in the appropriate cells of the spreadsheet
Do
For Each ws In Workbooks(iWbk).Sheets(Array("JfSommaire", "MaSommaire", "MartinSommaire", "BrunoSommaire", "JimSommaire", "NancySommaire", "GuillaumeSommaire"))
For Each r In ws.Range(ws.Range("A4"), ws.Range("A4").End(xlDown))
If ws.Cells(r.Row, 1) = rst.Fields("IDProjet") Then
ws.Cells(r.Row, 9).Value = rst.Fields("Honoraire utilisé")
End If
Next
Next
rst.MoveNext
Loop Until rst.EOF
rst.Close
exit_Here:
'Cleanup all objects (resume next on errors)
'Set wbk = Nothing
sDAte = Date
Workbooks(iWbk).SaveAs FileName:=sEmplacement & "\" & "MarcInterface" & "-" & sDAte & ".xls"
Workbooks(iWbk).Close
MsgBox ("Processed")
appExcel.Quit
Set appExcel = Nothing
Set rst = Nothing
Set dbs = Nothing
DoCmd.Hourglass False
i = 0
Exit Function
err_Handler:
ExportQuery = Err.Description
Resume exit_Here
End Function
Thanks for any help!
"Knowing that you know is the greatest sign of stupidity, knowing that you are ignorant is the best proof of intelligence.